1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-09 13:59:49 -04:00

Make sure to mkdir -p "/usr/local/bin" since /usr/local/bin may possibly not exist on pristine fresh macOS installs

This commit is contained in:
Reinhard Pointner 2018-11-20 17:30:15 +07:00
parent ae9c7bc00b
commit c838b4598c

View File

@ -3,6 +3,7 @@
# $2: Full path to the installation destination. # $2: Full path to the installation destination.
# For example: /Applications # For example: /Applications
ln -sf $2/FileBot.app/Contents/MacOS/filebot.sh /usr/local/bin/filebot mkdir -p "/usr/local/bin"
ln -sf "$2/FileBot.app/Contents/MacOS/filebot.sh" "/usr/local/bin/filebot"
exit 0 exit 0