diff options
author | Evgeni Golov <evgeni@grml.org> | 2013-03-06 15:19:54 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 13:54:16 +0200 |
commit | deabeeebb6d02b144cc9002c14bb6fca33c95ceb (patch) | |
tree | 8bfb098231661afbbe14497e905841000371f67e | |
parent | 9527df9780af4629c34ffc2dea5a26e2886bb268 (diff) | |
download | live-boot-deabeeebb6d02b144cc9002c14bb6fca33c95ceb.tar.gz live-boot-deabeeebb6d02b144cc9002c14bb6fca33c95ceb.zip |
Fixing invalid syntax in test for opt_link.
-rwxr-xr-x | scripts/boot/9990-misc-helpers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/boot/9990-misc-helpers.sh b/scripts/boot/9990-misc-helpers.sh index 888eeaf..f2814ec 100755 --- a/scripts/boot/9990-misc-helpers.sh +++ b/scripts/boot/9990-misc-helpers.sh @@ -1482,7 +1482,7 @@ activate_custom_mounts () # ignore the loop below and set rootfs_dest_backing=$dest local rootfs_dest_backing rootfs_dest_backing="" - if [ -n "${opt_link}"] + if [ -n "${opt_link}" ] then for d in /live/rootfs/* do |