mirror of
https://github.com/ivabus/pantry
synced 2024-11-29 19:55:06 +03:00
10 lines
171 B
Text
10 lines
171 B
Text
|
#!/bin/sh
|
||
|
|
||
|
d="$(cd "$(dirname "$0")/../Applications" && pwd)"
|
||
|
|
||
|
if test "$1" = "--version"; then
|
||
|
basename "$(dirname "$d")"
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
open "$d"/tea-package-builder.app
|