#!/usr/bin/env bash [[ " help plugin:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT" set -eo pipefail; [[ $DOKKU_TRACE ]] && set -x case "$1" in help | plugin:help) help_content_func () { declare desc="return plugin plugin help content" cat<, Enable a previously disabled plugin plugin:disable , Disable an installed plugin (third-party only) plugin:uninstall , Uninstall a plugin (third-party only) help_content } if [[ $1 = "plugin:help" ]] ; then echo -e 'Usage: dokku plugin[:COMMAND]' echo '' echo 'View installed plugins and manage community plugins.' echo '' echo 'Additional commands:' help_content_func | sort | column -c2 -t -s, else help_content_func fi ;; *) exit "$DOKKU_NOT_IMPLEMENTED_EXIT" ;; esac