We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a49ae0 commit d4c85d8Copy full SHA for d4c85d8
scripts/snap-wrapper.sh
@@ -47,4 +47,10 @@ if [ "$(snapctl get touch-emulation.enable)" = false ]; then
47
export ANBOX_ENABLE_TOUCH_EMULATION=false
48
fi
49
50
-exec "$SNAP"/usr/bin/anbox "$@"
+# Use custom Anbox binary for debugging purposes if available
51
+ANBOX="$SNAP"/usr/bin/anbox
52
+if [ -e "$SNAP_COMMON"/anbox.debug ]; then
53
+ ANBOX="$SNAP_COMMON"/anbox.debug
54
+fi
55
+
56
+exec "$ANBOX" "$@"
0 commit comments