Skip to content

Commit 6e10215

Browse files
committed
fix: redirect info messages to stderr in install script
1 parent a9e8148 commit 6e10215

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ BLUE='\033[0;34m'
1313
NC='\033[0m' # No Color
1414

1515
info() {
16-
echo -e "${BLUE}==>${NC} $1"
16+
echo -e "${BLUE}==>${NC} $1" >&2
1717
}
1818

1919
success() {
20-
echo -e "${GREEN}==>${NC} $1"
20+
echo -e "${GREEN}==>${NC} $1" >&2
2121
}
2222

2323
warn() {
24-
echo -e "${YELLOW}==>${NC} $1"
24+
echo -e "${YELLOW}==>${NC} $1" >&2
2525
}
2626

2727
error() {

0 commit comments

Comments
 (0)