diff --git a/deploy.sh b/deploy.sh index 6d4e331..5420645 100644 --- a/deploy.sh +++ b/deploy.sh @@ -11,8 +11,11 @@ if [[ $# -eq 1 ]]; then fi fi +BASE=$(pwd) + for app in $APPS do + cd $BASE echo "[server_config] > Deploying: $app" source "./$app/_deploy.sh" \ diff --git a/install.sh b/install.sh index 9c21c5c..84d3ce8 100644 --- a/install.sh +++ b/install.sh @@ -11,8 +11,11 @@ if [[ $# -eq 1 ]]; then fi fi +BASE=$(pwd) + for app in $APPS do + cd $BASE echo "[server_config] > Installing: $app" source "./$app/_install.sh" \