diff scripts/exec-all-projects-docker.sh @ 592:e97aa313253e

add ess conditional
author Marc Davis <marc.davis@mcoecn.org>
date Tue, 17 Sep 2024 08:20:31 -0400
parents d75786228e6b
children 652e0b0552b1 b3ff6b33a9c5
line wrap: on
line diff
--- 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----"