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.
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.