ADN-DevTech / 3dsMax-Python-HowTos

3ds Max python samples
MIT License
213 stars 49 forks source link

missing double quotes to handle spaces in install path #12

Closed phellmann closed 4 years ago

phellmann commented 4 years ago

I had an issue on windows with my 3dsMax install path. It contains spaces and line 3 in the .sh files script=$(dirname $(readlink -f "$0")) is not working. changing it with double quotes fixes the issue: script=$(dirname "$(readlink -f "$0")")

hugow commented 4 years ago

Thanks for reporting this. I just opened a PR https://github.com/ADN-DevTech/3dsMax-Python-HowTos/pull/13 should be merged shortly.