Fixed issue with values with spaces
function was treating the value as multiple arguments. Quoted the string and it's working fine.
This commit is contained in:
parent
df0ec68860
commit
718c7a9f76
1 changed files with 1 additions and 1 deletions
2
wetness
2
wetness
|
@ -38,7 +38,7 @@ cat $css_file | \
|
||||||
property=`echo $line | awk -F':' '{print $1}'`
|
property=`echo $line | awk -F':' '{print $1}'`
|
||||||
property=`strip $property`
|
property=`strip $property`
|
||||||
value=`echo $line | awk -F':' '{print $2}'`
|
value=`echo $line | awk -F':' '{print $2}'`
|
||||||
value=`strip $value`
|
value=`strip "$value"`
|
||||||
|
|
||||||
line="$property: $value;"
|
line="$property: $value;"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue