From ba22307ac564280ffbf8ff09aaea3761adf4502b Mon Sep 17 00:00:00 2001 From: kpaxman Date: Thu, 10 Jun 2021 14:04:54 -0400 Subject: [PATCH] Fix rebuild composer tags option so it works as intended --- scripts/composeroption.sh | 3 +-- scripts/getoptionsuser.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/composeroption.sh b/scripts/composeroption.sh index 70c3fbb..69c851c 100644 --- a/scripts/composeroption.sh +++ b/scripts/composeroption.sh @@ -1,5 +1,4 @@ function composeroption { - if [[ $build_option == $defaultinstall || $build_option == $nogessoinstall ]]; then if [ -f "$FILE" ]; then @@ -76,7 +75,7 @@ function composeroption { exit 0; - elif [ $build_option == updatecomposerinstall ]; then + elif [[ $build_option == $updatecomposerinstall ]]; then if [ -f "$FILE" ]; then echo "**************************************************************************************" diff --git a/scripts/getoptionsuser.sh b/scripts/getoptionsuser.sh index ef71fdc..de3c59b 100644 --- a/scripts/getoptionsuser.sh +++ b/scripts/getoptionsuser.sh @@ -65,7 +65,7 @@ function getoptionsuser { exit 0;; esac - if [[ ! $build_option == 4 ]]; then + if [[ ! $build_option == $updatecomposerinstall ]]; then gesso_version=0 -- GitLab