mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 08:57:21 +00:00
7 lines
156 B
Smarty
7 lines
156 B
Smarty
#!/bin/bash
|
|
cat > '/usr/bin/${executable}' << END
|
|
#!/bin/sh
|
|
'/opt/${productFilename}/${executable}' --no-sandbox \$@
|
|
END
|
|
|
|
chmod +x '/usr/bin/${executable}'
|