diff options
author | Simo Leone <simo@archlinux.org> | 2008-02-08 06:26:43 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-02-08 06:42:32 +0100 |
commit | e8490b3f14d887216f02a10e9a4cf9012fa577c8 (patch) | |
tree | f943cf8943b8271786c46aae8fb96a3eda996218 /makechrootpkg | |
parent | ff1fc799c3cf0f298cbd683075a5fd9a4e9f490e (diff) | |
download | devtools-e8490b3f14d887216f02a10e9a4cf9012fa577c8.tar.gz devtools-e8490b3f14d887216f02a10e9a4cf9012fa577c8.tar.xz |
Correcting an error in e0f139ad0e2b4144c39fa4431d174f453eb0ca520.5.1
If only you could have seen the facepalming going on...
Signed-off-by: Simo Leone <simo@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'makechrootpkg')
-rwxr-xr-x | makechrootpkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makechrootpkg b/makechrootpkg index cf1ee26..4c37dfc 100755 --- a/makechrootpkg +++ b/makechrootpkg @@ -107,7 +107,7 @@ echo "building union chroot" grep -Fq unionfs /proc/filesystems if [ $? -ne 0 ]; then modprobe -q unionfs - if [ $? -ne 0 ]; + if [ $? -ne 0 ]; then echo "ERROR: No unionfs available. Abandon ship!" && exit 1 fi fi |