From c362848b86d25db45897a3715684e4a2b209604c Mon Sep 17 00:00:00 2001 From: Veronica Berglyd Olsen <1619840+vkbo@users.noreply.github.com> Date: Sat, 20 Apr 2024 19:41:33 +0200 Subject: [PATCH] Fix bash script bug --- setup/macos/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup/macos/build.sh b/setup/macos/build.sh index 589708a3..eb7f5481 100755 --- a/setup/macos/build.sh +++ b/setup/macos/build.sh @@ -1,18 +1,18 @@ #! /bin/bash -if [ -z "$1"]; then +if [ -z "$1" ]; then PYTHON="3.11" else PYTHON="$1" fi -if [ -z "$2"]; then +if [ -z "$2" ]; then ARCH="amd64" else ARCH="$2" fi -if [ -z "$3"]; then +if [ -z "$3" ]; then CONDA="x86_64" else CONDA="$3"