From 8617c75ace9e1d83fccfceadab048caae6324016 Mon Sep 17 00:00:00 2001 From: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> Date: Thu, 7 Nov 2024 09:30:55 -0500 Subject: [PATCH] Fix typo in argument check in `script/build`. Partial #506 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com> --- script/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/build b/script/build index baacc02..fd84a9a 100755 --- a/script/build +++ b/script/build @@ -15,7 +15,7 @@ fi # Build for the host architecture by default. ARCH=() -if [[ "${#}" -gt 1 && "${1}" == '--universal' ]]; then +if [[ "${#}" -ge 1 && "${1}" == '--universal' ]]; then ARCH=( --arch arm64 --arch x86_64