You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
The scripts aren't marked as executables in Linux. You can't just simply launch ./ghostman or ./quicksetup.sh, you can run them with 'sh' or 'source' but not by themselves. This is fixed by doing chmod a+x for all the executables.
The text was updated successfully, but these errors were encountered:
also ghostman as a wrapper to the ./bin/ghostman.sh doesn't work as is. it needs the variables for the ghostman.sh script. Now it just prints the help everytime you use it regardless of what variables you give it. one would have to use bin/ghostman.sh $1 $2 $3 $4 etc. as the wrapper for it to work as intended.
I just added a softlink from ghostman to bin/ghostman.sh (ln -sf bin/ghostman.sh ghostman)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The scripts aren't marked as executables in Linux. You can't just simply launch
./ghostman
or./quicksetup.sh
, you can run them with 'sh' or 'source' but not by themselves. This is fixed by doingchmod a+x
for all the executables.The text was updated successfully, but these errors were encountered: