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