Mercurial > public > ssdt-docker
changeset 592:e97aa313253e
add ess conditional
author | Marc Davis <marc.davis@mcoecn.org> |
---|---|
date | Tue, 17 Sep 2024 08:20:31 -0400 |
parents | c8ef1c6829dd |
children | cb8b0620584b 8262e397a155 |
files | scripts/exec-all-projects-docker.sh |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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----"