diff --git a/asciiblaster-nw/deploy.sh b/asciiblaster-nw/deploy.sh index d6f9707..2d4a8ea 120000 --- a/asciiblaster-nw/deploy.sh +++ b/asciiblaster-nw/deploy.sh @@ -1 +1 @@ -../assets/shell/deploy-nwjs.sh \ No newline at end of file +../assets/shell/deploy-nw.sh \ No newline at end of file diff --git a/assets/shell/deploy-all.sh b/assets/shell/deploy-all.sh index 201ce70..2e6499b 100755 --- a/assets/shell/deploy-all.sh +++ b/assets/shell/deploy-all.sh @@ -23,11 +23,13 @@ main() { shift $((${OPTIND}-1)); for _build in cordoba nwjs www; do msgf "Deploying ${_build}..."; + cd "asciiblaster-${_build}"; if [ "${_vflag:-0}" -eq 0 ]; then - ./assets/shell/deploy-${_build}.sh "${@}"; + ./deploy.sh "${@}"; else - ./assets/shell/deploy-${_build}.sh -v "${@}"; + ./deploy.sh -v "${@}"; fi; + cd "${OLDPWD}"; msgf "Deployed ${_build}."; done; }; diff --git a/assets/shell/deploy-nwjs.sh b/assets/shell/deploy-nw.sh similarity index 100% rename from assets/shell/deploy-nwjs.sh rename to assets/shell/deploy-nw.sh