diff options
author | Daniel Baumann <daniel@debian.org> | 2008-11-02 12:55:04 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:03:44 +0100 |
commit | f070302f5817204e4e84e434618e484128ae432f (patch) | |
tree | c447769d317b9a19e25e0a2e98e0b424b7339b70 | |
parent | b55f1963c8c2375381c63dc2bfb8ff87641de0e3 (diff) | |
download | vyos-live-build-f070302f5817204e4e84e434618e484128ae432f.tar.gz vyos-live-build-f070302f5817204e4e84e434618e484128ae432f.zip |
Removing double warning symbol.
-rwxr-xr-x | functions/echo.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/echo.sh b/functions/echo.sh index e5787231f..34135933d 100755 --- a/functions/echo.sh +++ b/functions/echo.sh @@ -185,9 +185,9 @@ Echo_warning () if [ "${_L10N}" = "false" ] then - printf "W: ${STRING}\n" + printf " ${STRING}\n" else - printf "W: $(eval_gettext "${STRING}")" "${@}"; echo; + printf " $(eval_gettext "${STRING}")" "${@}"; echo; fi } |