mirror of
https://github.com/eugeny/tabby
synced 2026-05-28 04:01:04 +00:00
8 lines
155 B
Smarty
8 lines
155 B
Smarty
#!/bin/bash
|
|
cat > '/usr/bin/${executable}' << END
|
|
#!/bin/sh
|
|
'/opt/${productFilename}/${executable}' --no-sandbox $@
|
|
END
|
|
|
|
chmod +x '/usr/bin/${executable}'
|