mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
19 lines
295 B
Bash
Executable file
19 lines
295 B
Bash
Executable file
#!/bin/bash -e
|
|
#
|
|
# script/package_install
|
|
# mas
|
|
#
|
|
# Installs the mas distribution package. Requires sudo access.
|
|
#
|
|
|
|
IDENTIFIER=com.mphys.mas-cli
|
|
|
|
echo "==> 📲 Installing mas"
|
|
|
|
sudo installer \
|
|
-pkg build/mas.pkg \
|
|
-target /
|
|
|
|
pkgutil --pkg-info "$IDENTIFIER"
|
|
|
|
pkgutil --files "$IDENTIFIER"
|