diff scripts/exec-all-projects-docker.sh @ 607:3ec3180d23a4

merge
author Justin Kleinknecht <justin.kleinknecht@mcoecn.org>
date Tue, 01 Jul 2025 20:51:22 +0100
parents b3ff6b33a9c5
children
line wrap: on
line diff
--- a/scripts/exec-all-projects-docker.sh	Tue Jul 01 20:50:56 2025 +0100
+++ b/scripts/exec-all-projects-docker.sh	Tue Jul 01 20:51:22 2025 +0100
@@ -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,9 +30,9 @@
    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----"      
+      echo -e "----\n$executing $COMMAND on $project \n----"
 
       bash -c "${COMMAND}"
       echo ""