1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-11 13:13:59 +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 #!/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}'