Fix error text when using "dokku plugin:uninstall"

This commit is contained in:
Wyatt Calandro
2018-06-19 10:04:54 -07:00
committed by GitHub
parent 3bc5e780da
commit 2b709fb8e8

View File

@@ -7,7 +7,7 @@ source "$PLUGIN_AVAILABLE_PATH/plugin/internal-functions"
plugin_uninstall_cmd() {
declare desc="uninstalls plugin via command line"
local cmd="plugin:uninstall"
[[ -z $2 ]] && dokku_log_fail "Please specify a plugin to enable"
[[ -z $2 ]] && dokku_log_fail "Please specify a plugin to uninstall"
local PLUGIN="$2"
uninstall_plugin "$PLUGIN"
plugin_prime_bash_completion