From 10cfeb5ada7bcfc9f3aff3716ab8ea4961a8b528 Mon Sep 17 00:00:00 2001 From: mauwii Date: Tue, 8 Nov 2022 22:27:19 +0100 Subject: [PATCH] add quotes to set and use `$environment_file` --- 1-click-installer/install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/1-click-installer/install.sh b/1-click-installer/install.sh index 9df8f34ef1..176bdcd8a4 100755 --- a/1-click-installer/install.sh +++ b/1-click-installer/install.sh @@ -97,12 +97,12 @@ source "$CONDA_BASEPATH/etc/profile.d/conda.sh" # otherwise conda complains abou conda activate if [ "$OS_NAME" == "mac" ]; then - environment_file=environment-mac.yml + environment_file="environment-mac.yml" else - environment_file=environment.yml + environment_file="environment.yml" fi -conda env update -f $environment_file +conda env update -f "${environment_file}" status=$?