From 35acce84ea181571fef9a44a2887843d7befaf69 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 20 Feb 2017 18:37:22 -0700 Subject: [PATCH] chore: use correct path for sourcing --- plugins/storage/subcommands/mount | 4 ++-- plugins/storage/subcommands/unmount | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/storage/subcommands/mount b/plugins/storage/subcommands/mount index b82a550cb..0a052c65d 100755 --- a/plugins/storage/subcommands/mount +++ b/plugins/storage/subcommands/mount @@ -1,8 +1,8 @@ #!/usr/bin/env bash set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions" -source "$PLUGIN_CORE_AVAILABLE_PATH/storage/functions" -source "$PLUGIN_CORE_AVAILABLE_PATH/docker-options/functions" +source "$PLUGIN_AVAILABLE_PATH/storage/functions" +source "$PLUGIN_AVAILABLE_PATH/docker-options/functions" storage_mount_cmd() { declare desc="Add bind-mount, redeploy app if running" diff --git a/plugins/storage/subcommands/unmount b/plugins/storage/subcommands/unmount index d460386d5..7b86f5c38 100755 --- a/plugins/storage/subcommands/unmount +++ b/plugins/storage/subcommands/unmount @@ -1,8 +1,8 @@ #!/usr/bin/env bash set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x source "$PLUGIN_CORE_AVAILABLE_PATH/common/functions" -source "$PLUGIN_CORE_AVAILABLE_PATH/storage/functions" -source "$PLUGIN_CORE_AVAILABLE_PATH/docker-options/functions" +source "$PLUGIN_AVAILABLE_PATH/storage/functions" +source "$PLUGIN_AVAILABLE_PATH/docker-options/functions" storage_unmount_cmd() { declare desc="Remove bind-mount, restart app if running"