We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e4a4f commit e74c46eCopy full SHA for e74c46e
lib/output.sh
@@ -40,6 +40,7 @@ function output::indent() {
40
# EOF
41
# ```
42
function output::notice() {
43
+ local line
44
echo >&2
45
while IFS= read -r line; do
46
echo -e "${ANSI_BLUE} ! ${line}${ANSI_RESET}" >&2
@@ -58,6 +59,7 @@ function output::notice() {
58
59
60
61
function output::warning() {
62
63
64
65
echo -e "${ANSI_YELLOW} ! ${line}${ANSI_RESET}" >&2
@@ -76,6 +78,7 @@ function output::warning() {
76
78
77
79
80
function output::error() {
81
82
83
84
echo -e "${ANSI_RED} ! ${line}${ANSI_RESET}" >&2
0 commit comments