Skip to content

Commit feaca30

Browse files
committed
fix: Do not print informative messages to stderr
1 parent 75d647d commit feaca30

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/src/public/bash-core.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -376,9 +376,9 @@ core.print_info() {
376376
local msg="$1"
377377

378378
if core.private.should_print_color 1; then
379-
printf "\033[1;32m%s:\033[0m %s\n" 'Info' "$msg" >&2
379+
printf "\033[1;32m%s:\033[0m %s\n" 'Info' "$msg"
380380
else
381-
printf "%s: %s\n" 'Info' "$msg" >&2
381+
printf "%s: %s\n" 'Info' "$msg"
382382
fi
383383
}
384384

0 commit comments

Comments
 (0)