We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5a1d11 commit 778a257Copy full SHA for 778a257
1 file changed
apps/installer/scripts/install.sh
@@ -214,10 +214,11 @@ install_linux() {
214
cat > "$BIN_DIR/pairux" << 'WRAPPER'
215
#!/bin/bash
216
# PairUX launcher
217
-# --no-sandbox is required for AppImages without SUID chrome-sandbox
+# ELECTRON_DISABLE_SANDBOX is required for AppImages without SUID chrome-sandbox
218
APPIMAGE="$HOME/.pairux/PairUX.AppImage"
219
if [ -x "$APPIMAGE" ]; then
220
- exec "$APPIMAGE" --no-sandbox "$@"
+ export ELECTRON_DISABLE_SANDBOX=1
221
+ exec "$APPIMAGE" "$@"
222
else
223
echo "Error: PairUX AppImage not found at $APPIMAGE"
224
echo "Please reinstall: curl -fsSL https://installer.pairux.com/install.sh | bash"
0 commit comments