1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-08-16 07:50:34 +03:00
Eugeny#9656 fix: cli usage on linux
This commit is contained in:
Eugene 2024-05-19 10:18:15 +02:00 committed by GitHub
commit de81f12a17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,7 @@
#!/bin/bash
cat > '/usr/bin/${executable}' << END
#!/bin/sh
'/opt/${productFilename}/${executable}' --no-sandbox $@
'/opt/${productFilename}/${executable}' --no-sandbox \$@
END
chmod +x '/usr/bin/${executable}'