2018-09-25 11:48:00 +03:00
|
|
|
#!/bin/bash
|
2020-01-29 14:28:03 +03:00
|
|
|
cat > '/usr/bin/${executable}' << END
|
|
|
|
#!/bin/sh
|
|
|
|
'/opt/${productFilename}/${executable}' --no-sandbox $@
|
|
|
|
END
|
2018-09-25 11:48:00 +03:00
|
|
|
|
2020-01-29 14:28:03 +03:00
|
|
|
chmod +x '/usr/bin/${executable}'
|