From 89a2b6cd9325504014cd6990412931a5dc7578c9 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Mon, 18 May 2015 15:34:31 +0000 Subject: [PATCH] ytools-functions.sh fix: _ytools_format_section() left whitespace untouched Signed-off-by: Jan Lindemann --- scripts/jw-build-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/jw-build-functions.sh b/scripts/jw-build-functions.sh index cb02e791..df74d787 100644 --- a/scripts/jw-build-functions.sh +++ b/scripts/jw-build-functions.sh @@ -71,7 +71,7 @@ _ytools_cat_section() _ytools_format_config() { - sed '/^$/d; s/$/;/' + sed '/^ *$/d; s/$/;/g' | sed 's/ *= */=/' } _ytools_format_section()