Skip to content

Commit

Permalink
Fix another unquoted string
Browse files Browse the repository at this point in the history
  • Loading branch information
dderby committed Jul 5, 2016
1 parent 2ea5a81 commit 9a28870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install_debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fi
test -d $KERNELMODULES/$KERNELRELEASE || abort "Kernel modules not found"

# Check that filesystem has been mounted and is of expected type
test x$FSTYPE = x`awk '{ if ($2 == "'$MOUNTPOINT'") print $3 }' < /proc/mounts` || abort "Unexpected filesystem or filesystem not mounted"
test x$FSTYPE = "x`awk '{ if ($2 == "'$MOUNTPOINT'") print $3 }' < /proc/mounts`" || abort "Unexpected filesystem or filesystem not mounted"

# Check that mounted filesystem contains nothing but lost+found
test xlost+found = "x`ls $MOUNTPOINT`" || abort "Filesystem already contains data or is not formatted correctly"
Expand Down

0 comments on commit 9a28870

Please sign in to comment.