You are not logged in.
I have created (updated) a simple bash script application and have created an .esh installer.cfg which all works as it should and creates the installer which installs my app successfully, however, it is not available from the command-line... Is it possible to either install the app to /usr/bin or maybe create a softlink in /usr/bin to /program_files/<program_name>/usr/bin/<app_name> from the installer.cfg/Makefile? or is there some other magic to allow my script to be in the executable path?
Offline
Is it possible to either install the app to /usr/bin ...
Yes, it's possible. Set 'INSTALL_PREFIX="/"' variable in the 'installer.cfg'. All files will be placed relatively to 'INSTALL_PREFIX' path.
Offline
Great! Thanks guys
Offline