Files
dokku/plugins/trace/commands

17 lines
319 B
Plaintext
Raw Permalink Normal View History

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