Skip to content

Commit 3384c8f

Browse files
committed
Don't suppress a git push output when deliver work
We always must show the original output of a Git command even if we do its (output's) processing.
1 parent 87415eb commit 3384c8f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

libexec/git-elegant-deliver-work

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ MESSAGE
4141
}
4242

4343
--open-urls-if-possible() {
44-
type open >/dev/null 2>&1 || { echo "${1}"; return 0; }
44+
echo "${1}"
45+
type open >/dev/null 2>&1 || { return 0; }
4546
for line in ${1}; do
4647
if [[ ${line} =~ (^http)(.+) ]]; then
4748
open ${line}

0 commit comments

Comments
 (0)