mirror of
https://github.com/fleetdm/fleet
synced 2026-04-27 00:17:21 +00:00
11 lines
240 B
Bash
11 lines
240 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# variables
|
||
|
|
APPDIR="/Applications/"
|
||
|
|
TMPDIR=$(dirname "$(realpath $INSTALLER_PATH)")
|
||
|
|
|
||
|
|
# extract contents
|
||
|
|
unzip "$INSTALLER_PATH" -d "$TMPDIR"
|
||
|
|
# copy to the applications folder
|
||
|
|
sudo cp -R "$TMPDIR/Visual Studio Code.app" "$APPDIR"
|