try to allow compound commands

This commit is contained in:
radius 2016-08-27 22:19:59 -05:00
parent 768db17dc3
commit 5d4073903d

View File

@ -10,7 +10,7 @@ BRANCH=""
# ----- read variables from recipe config -----
while read line; do
KEY=`echo $line | cut -f 1 -d " "`
VALUE=`echo $line | cut -f 2 -d " "`
VALUE=`echo $line | cut -f 2,3,4 -d " "`
if [ "${KEY}" = "PATH" ]; then
export PATH=${VALUE}:${ORIGPATH}