From 718c7a9f7612ea99f5a288498e95d51d48937888 Mon Sep 17 00:00:00 2001 From: Joshua Sherman Date: Sun, 2 Feb 2014 17:45:14 -0500 Subject: [PATCH] Fixed issue with values with spaces function was treating the value as multiple arguments. Quoted the string and it's working fine. --- wetness | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wetness b/wetness index e7dd09a..5e3a299 100755 --- a/wetness +++ b/wetness @@ -38,7 +38,7 @@ cat $css_file | \ property=`echo $line | awk -F':' '{print $1}'` property=`strip $property` value=`echo $line | awk -F':' '{print $2}'` - value=`strip $value` + value=`strip "$value"` line="$property: $value;"