From 30e682b31b9c4e7ecb311dd1c7cb94c074a2cf72 Mon Sep 17 00:00:00 2001 From: j38560 Date: Mon, 19 Dec 2016 15:28:07 +0000 Subject: [PATCH] Fixed directory path. --- bin/deploy_to_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/deploy_to_test.sh b/bin/deploy_to_test.sh index e00ec93..6379f9c 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 -- GitLab