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:
Riccardo Manzan 2024-05-18 13:59:21 +02:00
parent d15b67a05f
commit 242f136a41

View File

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