chore: standardize popd calls

This commit is contained in:
Jose Diaz-Gonzalez
2021-03-01 00:30:34 -05:00
parent 3254c52d7c
commit 5804cd11bc
6 changed files with 7 additions and 7 deletions

View File

@@ -45,7 +45,7 @@ main() {
echo "=====> Creating upstream pull request"
../$GH_FOLDER/bin/gh pr create --head dokku:dokku-$VERSION --repo Azure/azure-quickstart-templates --title 'Update dokku-vm dokku version to 0.23.7' --body ''
popd >/dev/null
popd &>/dev/null
}
main "$@"

View File

@@ -7,7 +7,7 @@ main() {
mkdir -p test-results/bats
pushd tests/unit >/dev/null
bats --report-formatter junit --output ../../test-results/bats "$FILE_NAME.bats"
popd >/dev/null
popd &>/dev/null
ls -lah test-results/bats
}

View File

@@ -1284,7 +1284,7 @@ REV="$3" # optional, may not be sent for tar-based builds
pushd "$TMP_WORK_DIR" >/dev/null
touch Procfile
echo "clock: some-command" >> Procfile
popd >/dev/null
popd &>/dev/null
```
### `post-proxy-ports-update`

View File

@@ -14,7 +14,7 @@ trigger-builder-herokuish-post-app-clone-setup() {
pushd "$DOKKU_ROOT/$OLD_APP/." >/dev/null
find ./* \( -name ".cache" -o -name "cache" \) -prune -o -print | cpio -pdmu --quiet "$DOKKU_ROOT/$NEW_APP"
popd >/dev/null 2>&1 || pushd "/tmp" >/dev/null
popd &>/dev/null || pushd "/tmp" >/dev/null
if [[ -d "$NEW_CACHE_DIR" ]] && ! rmdir "$NEW_CACHE_DIR"; then
local DOCKER_RUN_LABEL_ARGS="--label=com.dokku.app-name=$NEW_APP"

View File

@@ -20,7 +20,7 @@ trigger-builder-herokuish-post-app-clone-setup() {
pushd "$DOKKU_ROOT/$OLD_APP/." >/dev/null
find ./* \( -name ".cache" -o -name "cache" \) -prune -o -print | cpio -pdmu --quiet "$DOKKU_ROOT/$NEW_APP"
popd >/dev/null 2>&1 || pushd "/tmp" >/dev/null
popd &>/dev/null || pushd "/tmp" >/dev/null
}
trigger-builder-herokuish-post-app-clone-setup "$@"

View File

@@ -245,7 +245,7 @@ fn-git-cmd() {
pushd "$GIT_DIR" >/dev/null
git "$@"
exit_code="$?"
popd >/dev/null 2>&1 || pushd "/tmp" >/dev/null
popd &>/dev/null || pushd "/tmp" >/dev/null
return $exit_code
}
@@ -383,7 +383,7 @@ fn-git-setup-build-dir-submodules() {
if [[ "$DOKKU_KEEP_GIT_DIR" != "true" ]]; then
pushd "$GIT_WORKDIR" >/dev/null
find "$GIT_WORKDIR" -name .git -prune -exec rm -rf {} \; >/dev/null
popd >/dev/null 2>&1 || pushd "/tmp" >/dev/null
popd &>/dev/null || pushd "/tmp" >/dev/null
fi
}