# HG changeset patch # User Aleksej Bobylev # Date 1378285083 -10800 # Node ID 32251cb0fea1719dc5715ec54a6700a078329685 # Parent 46db9b4c3a46424ce26c6c9b035f8371f0e2bee3 libtaz.sh: allow spaces in the options (example: --title="Please read this") diff -r 46db9b4c3a46 -r 32251cb0fea1 rootfs/lib/libtaz.sh --- a/rootfs/lib/libtaz.sh Sat Aug 24 14:50:29 2013 +0300 +++ b/rootfs/lib/libtaz.sh Wed Sep 04 11:58:03 2013 +0300 @@ -30,7 +30,7 @@ for opt in "$@" do case "$opt" in - --*=*) export ${opt#--} ;; + --*=*) export "${opt#--}" ;; --*) export ${opt#--}="yes" ;; esac done