# HG changeset patch # User Marc Davis # Date 1726575631 14400 # Node ID e97aa313253eb863ad69f9fcb7b5fd8fde18ab2d # Parent c8ef1c6829dd17bb5b85967cc7505e3b6e8b60ca add ess conditional diff -r c8ef1c6829dd -r e97aa313253e scripts/exec-all-projects-docker.sh --- a/scripts/exec-all-projects-docker.sh Thu Sep 05 15:01:40 2024 -0400 +++ b/scripts/exec-all-projects-docker.sh Tue Sep 17 08:20:31 2024 -0400 @@ -2,7 +2,7 @@ # Scans for standard SSDT docker projects in specified parent path and # executes the specified command. # -# The first parameter specifices the parent directory to search for. +# The first parameter specifies the parent directory to search for. # # The second parameter specifies the command to execute against each # SSDT standard docker project found under the parent directory. @@ -30,7 +30,7 @@ projectdir=`dirname $f` project=`basename $projectdir` cd $projectdir - if ls .env/ssdt-*-shared.properties 1> /dev/null 2>&1; then + if ls .env/ssdt-*-shared.properties 1> /dev/null 2>&1 || ls .env/ess-shared.properties 1> /dev/null 2>&1; then echo "projectdir is $projectdir" echo -e "----\n$executing $COMMAND on $project \n----"