Skip to content

Commit 031cf3e

Browse files
vladsokolovskylsun100
authored andcommitted
bfb-tool: Redirect output to standard output
1 parent e3d27f9 commit 031cf3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/bfb-tool

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ if [ "$(id -u)" -ne 0 ]; then
3030
fi
3131

3232
info() {
33-
echo >&2 "INFO: $*"
33+
echo >&1 "INFO: $*"
3434
}
3535

3636
note() {
37-
echo >&2 "NOTE: $*"
37+
echo >&1 "NOTE: $*"
3838
}
3939

4040
warn() {
41-
echo >&2 "WARNING: $*"
41+
echo >&1 "WARNING: $*"
4242
}
4343

4444
error() {

0 commit comments

Comments
 (0)