commit 1bdce61925564ca0c688377c196268ce97b5402b Author: Yawning Angel yawning@schwanenlied.me Date: Mon Nov 28 06:11:43 2016 +0000
Don't attempt to use the flatpak-bwrap to statisfy bubblewrap for now.
WHile the idea is nice in theory, `flatpak-bwrap --version` reports the flatpak version, so I'd need to keep a covnersion table or something to ensure I can do accurate bwrap version/feature detection. --- src/cmd/sandboxed-tor-browser/internal/sandbox/hugbox.go | 1 - 1 file changed, 1 deletion(-)
diff --git a/src/cmd/sandboxed-tor-browser/internal/sandbox/hugbox.go b/src/cmd/sandboxed-tor-browser/internal/sandbox/hugbox.go index 6f7528e..0707c57 100644 --- a/src/cmd/sandboxed-tor-browser/internal/sandbox/hugbox.go +++ b/src/cmd/sandboxed-tor-browser/internal/sandbox/hugbox.go @@ -388,7 +388,6 @@ func newHugbox() (*hugbox, error) { // Look for the bwrap binary in sensible locations. bwrapPaths := []string{ "/usr/bin/bwrap", - "/usr/lib/flatpak/flatpak-bwrap", // Arch Linux "flatpak" package. } for _, v := range bwrapPaths { if FileExists(v) {
tor-commits@lists.torproject.org