Fix a typo in the conditionals. Not sure how I didn't notice these
before
# FIXME: we need to be able to hide the plymouth splash for the check really
[ -e $livedev ] & fs=$(blkid -s TYPE -o value $livedev)
-if [ "$fs" == "iso9660" -o "$fs" = "udf" ]; then
+if [ "$fs" = "iso9660" -o "$fs" = "udf" ]; then
check="yes"
fi
getarg check || check=""
pathspec=$( echo $overlay | sed -e 's/^.*://' )
fi
- if [ -z "$pathspec" -o "$pathspec" == "auto" ]; then
+ if [ -z "$pathspec" -o "$pathspec" = "auto" ]; then
pathspec="/${live_dir}/overlay-$l-$u"
fi
devspec=$( echo $overlay | sed -e 's/:.*$//' )