From b2051f86faaf5a2858744c427d5ca2c4dab41b8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Guitaut?= Date: Tue, 1 Sep 2015 23:25:14 +0200 Subject: [PATCH] Use $PLUGIN_PATH instead of dirname --- commands | 2 +- docker-args | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands b/commands index 12f7c31..593186c 100755 --- a/commands +++ b/commands @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x -source "$(dirname "$0")/../common/functions" +source "$PLUGIN_PATH/common/functions" source "$(dirname "$0")/functions" source "$(dirname "$0")/config" diff --git a/docker-args b/docker-args index 9cf22af..ec4ba7e 100755 --- a/docker-args +++ b/docker-args @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x -source "$(dirname "$0")/../common/functions" +source "$PLUGIN_PATH/common/functions" source "$(dirname "$0")/functions" source "$(dirname "$0")/config"