Skip to content

Commit

Permalink
missing dollar signs from some variables
Browse files Browse the repository at this point in the history
  • Loading branch information
chubing authored Mar 24, 2020
1 parent dc1a9a1 commit ca490cd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions container_files/usr-local-bin/library.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ca490cd

Please sign in to comment.