We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da8cf56 commit e5a1d11Copy full SHA for e5a1d11
1 file changed
apps/installer/scripts/install.sh
@@ -214,9 +214,10 @@ 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
218
APPIMAGE="$HOME/.pairux/PairUX.AppImage"
219
if [ -x "$APPIMAGE" ]; then
- exec "$APPIMAGE" "$@"
220
+ exec "$APPIMAGE" --no-sandbox "$@"
221
else
222
echo "Error: PairUX AppImage not found at $APPIMAGE"
223
echo "Please reinstall: curl -fsSL https://installer.pairux.com/install.sh | bash"
0 commit comments