From aa74178622de5184cf5e72efdb42899397615a4d Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 23 Sep 2024 20:33:16 -0400 Subject: [PATCH] fix: add builder-herokuish to default help output Closes #6974 --- plugins/builder-herokuish/commands | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 plugins/builder-herokuish/commands diff --git a/plugins/builder-herokuish/commands b/plugins/builder-herokuish/commands new file mode 100755 index 000000000..0e2d59fb7 --- /dev/null +++ b/plugins/builder-herokuish/commands @@ -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