# HG changeset patch # User Marc Davis # Date 1715621310 14400 # Node ID 5d5525414c8de2dc1418ac452f9f1738ac9f3ffe # Parent e849a863687aee97a061fd3faed316fef7da3f92 update exec-all-projects-docker.sh to search for ./env/*-shared.properties in place of ./env/ssdt-*-shared.properties. ESS doesn't follow the same pattern for property file names. diff -r e849a863687a -r 5d5525414c8d scripts/exec-all-projects-docker.sh --- a/scripts/exec-all-projects-docker.sh Mon May 06 11:01:06 2024 -0400 +++ b/scripts/exec-all-projects-docker.sh Mon May 13 13:28:30 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/*-shared.properties 1> /dev/null 2>&1; then echo "projectdir is $projectdir" echo -e "----\n$executing $COMMAND on $project \n----"