Less whitespace

This commit is contained in:
Luke Murphy 2020-03-21 01:13:17 +01:00
parent 83cf0538c0
commit a07745764b
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
3 changed files with 0 additions and 3 deletions

View File

@ -12,7 +12,6 @@ dokku-ansible-playbook-post-deploy() {
. $(dirname "$0")/functions
dokku_col_log_info1_quiet "Running post-deploy ansible playbook"
run_playbook "$APP" "$PLAYBOOK" "$REQUIREMENTS"
}

View File

@ -8,7 +8,6 @@ dokku-ansible-playbook-post-extract() {
declare APP="$1" TMPDIR="$2"
dokku_col_log_info1_quiet "Checking for ansible playbooks supplied in repo"
if [[ -d "$TMPDIR/ansible" ]] && [[ "$(ls -A "$TMPDIR/ansible")" ]]; then
mkdir -p "$DOKKU_LIB_ROOT/data/ansible/$APP"
cp -r "$TMPDIR/ansible/." "$DOKKU_LIB_ROOT/data/ansible/$APP"

View File

@ -12,7 +12,6 @@ dokku-ansible-playbook-pre-deploy() {
. $(dirname "$0")/functions
dokku_col_log_info1_quiet "Running pre-deploy ansible playbook"
run_playbook "$APP" "$PLAYBOOK" "$REQUIREMENTS"
}