From c054726deb520f945400f957822bc3e545bd70cf Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Fri, 20 Mar 2020 00:54:13 +0100 Subject: [PATCH] Use plain cd --- functions | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/functions b/functions index 79a1eb0..e01f67c 100755 --- a/functions +++ b/functions @@ -14,7 +14,7 @@ function run_playbook() { exit 0 fi - pushd "$DOKKU_LIB_ROOT/data/ansible/$APP" >/dev/null + cd "$DOKKU_LIB_ROOT/data/ansible/$APP" if [[ -f "$requirements" ]]; then dokku_col_log_info1_quiet "$requirements file found" @@ -31,6 +31,4 @@ function run_playbook() { --connection local \ "$play_path" \ --module-path "$(pwd)/roles/*/library" - - popd >/dev/null }