mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
refactor: unify command declaration across codebase
This commit is contained in:
@@ -6,9 +6,10 @@ set -eo pipefail
|
||||
|
||||
cmd-git-report() {
|
||||
declare desc="displays a git report for one or more apps"
|
||||
local cmd="git:report"
|
||||
declare cmd="git:report"
|
||||
[[ "$1" == "$cmd" ]] && shift 1
|
||||
declare APP="$1" INFO_FLAG="$2"
|
||||
local INSTALLED_APPS=$(dokku_apps)
|
||||
local APP="$2" INFO_FLAG="$3"
|
||||
|
||||
if [[ -n "$APP" ]] && [[ "$APP" == --* ]]; then
|
||||
INFO_FLAG="$APP"
|
||||
|
||||
Reference in New Issue
Block a user