mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 12:07:45 +01:00
17 lines
418 B
Bash
Executable File
17 lines
418 B
Bash
Executable File
#!/usr/bin/env bash
|
|
[[ " help help:help cleanup:help url:help urls:help version:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
source "$PLUGIN_AVAILABLE_PATH/00_dokku-standard/help-functions"
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
case "$1" in
|
|
help | cleanup:help | url:help | urls:help | version:help)
|
|
cmd-standard-help "$@"
|
|
;;
|
|
|
|
*)
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
|
;;
|
|
|
|
esac
|