open --reveal "$APP"
This commit is contained in:
parent
887957ea6f
commit
fa389c0490
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue