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
When I download and unzip the zip file, the syntax in bin/1.20.5 shell script has a problem with parameter substitution. Specifically,
the final command build includes the line:
It is possible that this is a problem in Apple's replacement of the Bourne shell /bin/sh with zsh, I dunno, but the replacement syntax is entirely portable shell syntax, so it seems worthwhile to fix this.
The text was updated successfully, but these errors were encountered:
When I download and unzip the zip file, the syntax in bin/1.20.5 shell script has a problem with parameter substitution. Specifically,
the final command build includes the line:
/bin/sh interprets the final parameter as $1 followed by the text _20_5_OPTS. This can be fixed by telling the shell the actual bounds, as in:
It is possible that this is a problem in Apple's replacement of the Bourne shell /bin/sh with zsh, I dunno, but the replacement syntax is entirely portable shell syntax, so it seems worthwhile to fix this.
The text was updated successfully, but these errors were encountered: