From ca490cdb1fd76fc9bb12e9b341b445a1fca8b40a Mon Sep 17 00:00:00 2001 From: Christopher Hubing Date: Tue, 24 Mar 2020 10:58:41 -0400 Subject: [PATCH] missing dollar signs from some variables --- container_files/usr-local-bin/library.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/container_files/usr-local-bin/library.sh b/container_files/usr-local-bin/library.sh index 831f0eb2..c2546996 100755 --- a/container_files/usr-local-bin/library.sh +++ b/container_files/usr-local-bin/library.sh @@ -156,17 +156,17 @@ finishPrep() { # copy files to their appropriate locations based on passed in flags - if [ "GROUPER_WS" = "true" ] + if [ "$GROUPER_WS" = "true" ] then cp -r $dest/libWs/* $dest/lib/ fi - if [ "GROUPER_SCIM" = "true" ] + if [ "$GROUPER_SCIM" = "true" ] then cp -r $dest/libScim/* $dest/lib/ fi - if [ "GROUPER_UI" = "true" ] || [ "GROUPER_DAEMON" = "true" ] + if [ "$GROUPER_UI" = "true" ] || [ "$GROUPER_DAEMON" = "true" ] then cp -r $dest/libUiAndDaemon/* $dest/lib/ fi