Files
dokku/plugins/shell/commands

17 lines
319 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
[[ " help shell:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
2020-02-10 00:37:00 -05:00
source "$PLUGIN_AVAILABLE_PATH/shell/help-functions"
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
case "$1" in
help | shell:help)
2020-02-10 00:37:00 -05:00
cmd-shell-help "$@"
;;
*)
2016-02-22 10:16:57 -08:00
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
;;
esac