We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2516203 commit 6470e3cCopy full SHA for 6470e3c
1 file changed
install.sh
@@ -12,15 +12,15 @@ YELLOW='\033[1;33m'
12
NC='\033[0m' # No Color
13
14
info() {
15
- printf "${GREEN}[INFO]${NC} %s\n" "$1"
+ printf "${GREEN}[INFO]${NC} %s\n" "$1" >&2
16
}
17
18
warn() {
19
- printf "${YELLOW}[WARN]${NC} %s\n" "$1"
+ printf "${YELLOW}[WARN]${NC} %s\n" "$1" >&2
20
21
22
error() {
23
- printf "${RED}[ERROR]${NC} %s\n" "$1"
+ printf "${RED}[ERROR]${NC} %s\n" "$1" >&2
24
exit 1
25
26
0 commit comments