open --reveal "$APP"

This commit is contained in:
Reinhard Pointner 2016-11-16 00:37:10 +08:00
parent 887957ea6f
commit fa389c0490
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
PKG_NAME="FileBot_Subtitles_Installer.pkg"
PKG_URL="https://app.filebot.net/files/$PKG_NAME"
PKG="/tmp/$PKG_NAME"
APP="/Applications/FileBot Subtitles.app"
function fetch {
curl --location --output "$1" --time-cond "$1" --retry 5 "$2"
@ -16,4 +17,4 @@ function install {
sudo installer -verbose -package "$1" -target LocalSystem
}
fetch "$PKG" "$PKG_URL" && verify "$PKG" && install "$PKG"
fetch "$PKG" "$PKG_URL" && verify "$PKG" && install "$PKG" && open --reveal "$APP"