diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-05-26 17:30:29 +0200 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-05-26 17:30:29 +0200 |
commit | 364ae8f8d07b2e349f192ecfa02985db783803d0 (patch) | |
tree | 86c8cb5ed9fe2ddd1baffbb4ea9bcb1114306406 /hooks | |
parent | 9090832f289150eddc3eeb4c2013a8900494e7e1 (diff) | |
download | mkinitcpio-364ae8f8d07b2e349f192ecfa02985db783803d0.tar.gz mkinitcpio-364ae8f8d07b2e349f192ecfa02985db783803d0.tar.xz |
Syntax error in if statement... thanks pingu
git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@115 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'hooks')
-rw-r--r-- | hooks/filesystems | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hooks/filesystems b/hooks/filesystems index 77ebde3..cd2f28c 100644 --- a/hooks/filesystems +++ b/hooks/filesystems @@ -17,7 +17,7 @@ run_hook () fi eval $( /bin/parseblock "${root}") - if [ "${BLOCKNAME}" = "unknown" -o "x{BLOCKDEVICE}" = "x"]; then + if [ "${BLOCKNAME}" = "unknown" -o "x{BLOCKDEVICE}" = "x" ]; then FSTYPE="unknown" echo "ERROR: Failed to parse block device '${root}'" else |