diff options
author | Jeff Bilyk <jbilyk@gmail.com> | 2011-07-16 22:06:10 -0400 |
---|---|---|
committer | Jeff Bilyk <jbilyk@gmail.com> | 2011-07-16 22:06:10 -0400 |
commit | 70b1a6716dc5e2ed4a4b92d908691f86924c3753 (patch) | |
tree | f1dbaa8a17aa597db9de959ec87b8b601f6c7806 | |
parent | a234ec98b8a4be9fa7ebd8e37cce4d58ec1c5473 (diff) | |
download | alpine-conf-70b1a6716dc5e2ed4a4b92d908691f86924c3753.zip |
setup-bootable: one last typo fix
-rw-r--r-- | setup-bootable.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-bootable.in b/setup-bootable.in index db388a6..30410ad 100644 --- a/setup-bootable.in +++ b/setup-bootable.in @@ -117,7 +117,7 @@ elif [ -b "$dest" ]; then fi # Check for RO mounting -if [ "`grep \"$destdir\" /proc/mount | grep '(ro,'`" == "ro" ]; then +if [ "`grep \"$destdir\" /proc/mount | grep 'ro,'`" == "ro" ]; then remountneeded="Y" mount -o remount,rw "$destdir" fi |