From 85316d7be4f237520a78e9e90fda0dccedf13453 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Mon, 13 Apr 2020 13:16:49 +0200 Subject: [PATCH] Fix path and calm shellcheck down --- functions | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/functions b/functions index 85ce941..cad182f 100755 --- a/functions +++ b/functions @@ -78,11 +78,13 @@ dokku-ansible-deploy-dependencies() { declare desc="install plugin dependencies" declare DEPENDENCIES="ansible python3 python3-dev python3-ruamel.yaml" - declare REQUIREMENTS="$PLUGIN_CORE_AVAILABLE_PATH/ansible-deploy/deps/requirements.yml" + declare REQUIREMENTS="$PLUGIN_AVAILABLE_PATH/ansible-deploy/deps/requirements.yml" dokku_col_log_info1_quiet "Ensuring the following packages are installed: $DEPENDENCIES" export DEBIAN_FRONTEND=noninteractive + + # shellcheck disable=SC2086 apt update && apt install -y $DEPENDENCIES dokku_col_log_info1_quiet "Installing Ansible requirements"