7 lines
176 B
Bash
Executable File
7 lines
176 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eo pipefail
|
|
[[ $DOKKU_TRACE ]] && set -x
|
|
|
|
# `dokku google-auth` with no subcommand shows the report.
|
|
exec "$(dirname "${BASH_SOURCE[0]}")/report" "$@"
|