2015-09-08 12:14:57 -07:00
|
|
|
#!/usr/bin/env bash
|
2016-03-01 13:26:35 -08:00
|
|
|
[[ " help plugin:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
2020-02-10 00:37:00 -05:00
|
|
|
source "$PLUGIN_AVAILABLE_PATH/plugin/help-functions"
|
2019-01-07 01:04:17 -05:00
|
|
|
set -eo pipefail
|
|
|
|
|
[[ $DOKKU_TRACE ]] && set -x
|
2015-09-08 12:14:57 -07:00
|
|
|
|
|
|
|
|
case "$1" in
|
2015-09-09 18:27:42 -07:00
|
|
|
help | plugin:help)
|
2020-02-10 00:37:00 -05:00
|
|
|
cmd-plugin-help "$@"
|
2015-09-08 12:14:57 -07:00
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
*)
|
2016-02-22 10:16:57 -08:00
|
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
2015-09-08 12:14:57 -07:00
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
esac
|