Skip to content

Commit

Permalink
Merge pull request dokku-community#35 from dokku-community/josegonzal…
Browse files Browse the repository at this point in the history
…ez-patch-1

fix: do not output stdout to stderr
  • Loading branch information
josegonzalez authored May 15, 2022
2 parents 16fe064 + 8f30d88 commit 7769391
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subcommands/list
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ cmd-acl-list() {
for APP in $INSTALLED_APPS; do
fn-acl-check-app "$APP"
dokku_log_info2_quiet "${APP} acl list"
ls -1 "$DOKKU_ROOT/$APP/acl" >&2 2>/dev/null || true
ls -1 "$DOKKU_ROOT/$APP/acl" 2>/dev/null || true
done
else
fn-acl-check-app "$APP"
ls -1 "$DOKKU_ROOT/$APP/acl" >&2 2>/dev/null || true
ls -1 "$DOKKU_ROOT/$APP/acl" 2>/dev/null || true
fi
}

Expand Down

0 comments on commit 7769391

Please sign in to comment.