Fix path and calm shellcheck down

This commit is contained in:
Luke Murphy 2020-04-13 13:16:49 +02:00
parent 092cae8516
commit 85316d7be4
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 3 additions and 1 deletions

View File

@ -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"