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
SCRIPTDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
does not yield the actual executable of the script if it is symlinked. How about adding -P to pwd to obtain the actual directory according to https://stackoverflow.com/a/7666
The line
does not yield the actual executable of the script if it is symlinked. How about adding
-Ptopwdto obtain the actual directory according to https://stackoverflow.com/a/7666