From: Didier Raboud Date: Sun, 2 Jun 2013 20:59:33 +0000 (+0200) Subject: Drop one more unnecessary use of /bin/echo -n X-Git-Tag: archive/raspbian/10.2018112800+rpi1^2~67 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ca4918edbd7dc9c7af915c76d3a8cc22110e1cef;p=lsb.git Drop one more unnecessary use of /bin/echo -n Rationale was listed in commit 3d998a9ef130cf67baa4be977fdf505d6a3e4c9e but this commit forgot the remaining one in init-functions.d/. --- diff --git a/init-functions.d/20-left-info-blocks b/init-functions.d/20-left-info-blocks index 9b9f3b1..5bd8082 100644 --- a/init-functions.d/20-left-info-blocks +++ b/init-functions.d/20-left-info-blocks @@ -1,7 +1,7 @@ # Default info blocks put to the left of the screen log_daemon_msg_pre () { if log_use_fancy_output; then - /bin/echo -n "[....] " || true + echo -n "[....] " || true fi } log_begin_msg_pre () {