mirror of https://github.com/cirruslabs/tart.git
14 lines
350 B
Bash
Executable File
14 lines
350 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# fix structure
|
|
mkdir -p "$2/tart.app/Contents/MacOS"
|
|
mv "$2/tart" "$2/tart.app/Contents/MacOS/tart"
|
|
mv "$2/embedded.provisionprofile" "$2/tart.app/Contents/embedded.provisionprofile"
|
|
|
|
echo "#!/bin/sh" > /usr/local/bin/tart
|
|
echo "exec '$2/tart.app/Contents/MacOS/tart' \"\$@\"" >> /usr/local/bin/tart
|
|
|
|
chmod +x /usr/local/bin/tart
|