diff --git a/bin/deploy_to_test.sh b/bin/deploy_to_test.sh index e00ec93afb91cd068a2fea2320a9ddff37fc50c9..6379f9cc0a5b3e4bfb74180d18dd942dc210d5b8 100644 --- a/bin/deploy_to_test.sh +++ b/bin/deploy_to_test.sh @@ -9,7 +9,7 @@ source $ROOT/functions.sh runRemoteSQL $ROOT/../source/setup.sql if [ -d $ROOT/../source/tables/ ]; then - for f in $ROOT/../source/tables/ + for f in $ROOT/../source/tables/* do runRemoteSQL "$f" done @@ -18,7 +18,7 @@ else fi if [ -d $ROOT/../source/fk/ ]; then - for f in $ROOT/../source/fk/ + for f in $ROOT/../source/fk/* do runRemoteSQL "$f" done