From de27a82a67ee51ce93448bcdee8ea54b3aa2f0b6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 27 Aug 2012 15:43:46 +0200 Subject: [PATCH] Correcting printf call cosmetically in central wrapper when prepending date and time for each command to not choke upon multiple arguments. --- bin/lb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lb b/bin/lb index e8cdb5c3b..e2d756688 100755 --- a/bin/lb +++ b/bin/lb @@ -74,7 +74,7 @@ case "${1}" in exit 1 fi - Echo "[%s] %s" "$(date +'%F %T')" "${COMMAND} ${@}" + Echo "[%s] %s" "$(date +'%F %T')" "${COMMAND} $(echo ${@})" ${ENV} exec "${SCRIPT}" "${@}" ;; esac