Merge pull request #451 from mas-cli/ben/install_script

📜 Script fixes
This commit is contained in:
Ben Chatelain 2022-06-04 11:05:06 -06:00 committed by GitHub
commit d0f51d573a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -110,11 +110,11 @@ bottles:
bottle: bottles bottle: bottles
.PHONY: package .PHONY: package
package: package: build
script/package script/package
.PHONY: packageInstall .PHONY: packageInstall
packageInstall: packageInstall: package
script/package_install script/package_install
.PHONY: describe .PHONY: describe

View file

@ -23,7 +23,7 @@ fi
while test -n "$1"; do while test -n "$1"; do
if [[ "$1" == '--universal' ]]; then if [[ "$1" == '--universal' ]]; then
ARCH=universal ARCH=universal
RELEASE=.build/apple/Products/Release RELEASE=.build/release
else else
# Override default prefix path with optional arg # Override default prefix path with optional arg
PREFIX="$1" PREFIX="$1"