From 161d877e8b7a669cba7351b7f92e581cb5fc9829 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 4 Jun 2018 11:42:42 -0400 Subject: [PATCH] fix: add missing source of config/functions Sometimes a deploy will complain if this doesn't exist. --- plugins/common/functions | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/common/functions b/plugins/common/functions index 2c89b5ab1..926d7a7af 100755 --- a/plugins/common/functions +++ b/plugins/common/functions @@ -557,6 +557,7 @@ dokku_release() { dokku_deploy_cmd() { declare desc="deploy phase" declare APP="$1" IMAGE_TAG="$2" + source "$PLUGIN_AVAILABLE_PATH/config/functions" local DOKKU_SCHEDULER=$(config_get "$APP" DOKKU_SCHEDULER || echo "docker-local") plugn trigger scheduler-deploy "$DOKKU_SCHEDULER" "$APP" "$IMAGE_TAG"