Fix warning and error extension functions
This commit is contained in:
parent
bdf3057633
commit
b4af1cb111
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ function warnh() {
|
|||
}
|
||||
## Warning (extension)
|
||||
function warne() {
|
||||
echo -e "${BUILDTOOL_COLOR_WARN} : ${*}${BUILDTOOL_COLOR_RESET}"
|
||||
echo -e "${BUILDTOOL_COLOR_WARN} ${*}${BUILDTOOL_COLOR_RESET}"
|
||||
}
|
||||
## Error (header)
|
||||
function errorh() {
|
||||
|
@ -46,7 +46,7 @@ function errorh() {
|
|||
}
|
||||
## Error (extension)
|
||||
function errore() {
|
||||
echo -e "${BUILDTOOL_COLOR_ERROR} : ${*}${BUILDTOOL_COLOR_RESET}"
|
||||
echo -e "${BUILDTOOL_COLOR_ERROR} ${*}${BUILDTOOL_COLOR_RESET}"
|
||||
}
|
||||
|
||||
# Banner
|
||||
|
|
Loading…
Reference in a new issue