Merge pull request #7198 from dokku/6974-builder-herokuish-help

Add builder-herokuish to default help output
This commit is contained in:
Jose Diaz-Gonzalez
2024-09-23 21:45:51 -04:00
committed by GitHub

View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
set -eo pipefail
[[ $DOKKU_TRACE ]] && set -x
source "$PLUGIN_AVAILABLE_PATH/builder-herokuish/help-functions"
case "$1" in
help | builder-herokuish:help)
cmd-builder-herokuish-help "$@"
;;
*)
exit "$DOKKU_NOT_IMPLEMENTED_EXIT"
;;
esac