mirror of
https://github.com/mas-cli/mas
synced 2024-12-04 17:29:16 +00:00
Fix typo in argument check in script/build
.
Partial #506 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
parent
c314af5167
commit
8617c75ace
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ fi
|
||||||
|
|
||||||
# Build for the host architecture by default.
|
# Build for the host architecture by default.
|
||||||
ARCH=()
|
ARCH=()
|
||||||
if [[ "${#}" -gt 1 && "${1}" == '--universal' ]]; then
|
if [[ "${#}" -ge 1 && "${1}" == '--universal' ]]; then
|
||||||
ARCH=(
|
ARCH=(
|
||||||
--arch arm64
|
--arch arm64
|
||||||
--arch x86_64
|
--arch x86_64
|
||||||
|
|
Loading…
Reference in a new issue