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
Hi, I'm working in a Cask for SteamCMD. You can see it in my fork; it's almost copied from parse.
However, when installed, it gives this error:
$ steamcmd
/usr/local/bin/steamcmd: line 32: /usr/local/bin/osx32/steamcmd: No such file or directory
Basically, the entry point is a .sh file that has this in its first line
STEAMROOT="$(cd "${0%/*}"&&echo$PWD)"
So, it tries to find its accompanying files in /usr/local/bin, instead of realizing it is symlinked.
What should I do in this case? Do I patch it in a postflight stanza?
The text was updated successfully, but these errors were encountered:
Hi, I'm working in a Cask for SteamCMD. You can see it in my fork; it's almost copied from
parse
.However, when installed, it gives this error:
Basically, the entry point is a .sh file that has this in its first line
STEAMROOT="$(cd "${0%/*}" && echo $PWD)"
So, it tries to find its accompanying files in
/usr/local/bin
, instead of realizing it is symlinked.What should I do in this case? Do I patch it in a
postflight
stanza?The text was updated successfully, but these errors were encountered: