mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 20:05:04 -05:00
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/bin/sh -xu
|
|
|
|
# $2: Full path to the installation destination.
|
|
# For example: /Applications
|
|
|
|
mkdir -p "/usr/local/bin"
|
|
ln -sf "$2/FileBot.app/Contents/MacOS/filebot.sh" "/usr/local/bin/filebot"
|
|
|
|
exit 0
|