Files
dokku/plugins/checks/commands

17 lines
323 B
Plaintext
Raw Permalink Normal View History

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