#!/usr/bin/env bash source "$PLUGIN_AVAILABLE_PATH/git/functions" set -eo pipefail [[ $DOKKU_TRACE ]] && set -x trigger-git-receive-app() { declare desc="builds the app from the local git repository" declare trigger="receive-app" git_receive_app "$@" return $? } trigger-git-receive-app "$@"