ksherlock / mpw

Macintosh Programmer's Workshop (mpw) compatibility layer
238 stars 21 forks source link

Use /bin/sh; quote shell variables #46

Closed ryandesign closed 1 year ago

ryandesign commented 1 year ago

The readme says mpw emulator requires OS X 10.8+. On macOS, the sh executable is at /bin/sh, not /usr/bin/sh; fix all references to it.

Also, quote $@ properly in the sample shell wrapper scripts. Quoting $@ is necessary so that arguments that contain spaces are handled properly.

ksherlock commented 1 year ago

thanks!