fix: add builder-herokuish to default help output

Closes #6974
This commit is contained in:
Jose Diaz-Gonzalez
2024-09-23 20:33:16 -04:00
parent 0f8395365e
commit aa74178622

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