mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
7 lines
155 B
Smarty
7 lines
155 B
Smarty
#!/bin/bash
|
|
cat > '/usr/bin/${executable}' << END
|
|
#!/bin/sh
|
|
'/opt/${productFilename}/${executable}' --no-sandbox $@
|
|
END
|
|
|
|
chmod +x '/usr/bin/${executable}'
|