mirror of
https://github.com/dokku/dokku.git
synced 2025-12-16 20:17:44 +01:00
17 lines
355 B
Plaintext
17 lines
355 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
[[ " help scheduler-null:help " == *" $1 "* ]] || exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
||
|
|
source "$PLUGIN_AVAILABLE_PATH/scheduler-null/help-functions"
|
||
|
|
set -eo pipefail
|
||
|
|
[[ $DOKKU_TRACE ]] && set -x
|
||
|
|
|
||
|
|
case "$1" in
|
||
|
|
help | scheduler-null:help)
|
||
|
|
cmd-scheduler-null-help "$@"
|
||
|
|
;;
|
||
|
|
|
||
|
|
*)
|
||
|
|
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
|
||
|
|
;;
|
||
|
|
|
||
|
|
esac
|