Fix syntax error from previous commit.

Approved by:	kib (mentor)
This commit is contained in:
Josh Paetzel 2011-03-30 17:33:52 +00:00
parent eea5c61835
commit c33b75754d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=220161

View file

@ -421,7 +421,7 @@ setup_disk_slice()
# Check if we have an image file defined
echo $line | grep -q "^image=" 2>/dev/null
if [ $? eq 0 ] ; then
if [ $? -eq 0 ] ; then
# Found an image= entry, lets read / set it
get_value_from_string "${line}"
strip_white_space "$VAL"