diff --git a/hack/bootstrap.sh b/hack/bootstrap.sh index c63781d..643a9cc 100755 --- a/hack/bootstrap.sh +++ b/hack/bootstrap.sh @@ -56,7 +56,7 @@ handle_exit() { logged() { "$@" >> "${LOGFILE}" 2>&1; } showlog() { echo && echo "Error! Showing logs:" && cat "${LOGFILE}"; } cleanlog() { rm "${LOGFILE}"; } -delete_repos() { pushd "${HERE}" && rm -rf "${BASEIMAGE_REPO}" "${FRONTEND_REPO}" "${CHALLENGE}" && popd; } +delete_repos() { cd "${HERE}" && rm -rf "${BASEIMAGE_REPO}" "${FRONTEND_REPO}" "${CHALLENGE}"; } check_dependencies() { local dependencies=("git" "docker" "yarn" "ng")