aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2010-01-15 11:07:46 -0500
committerDave Reisner <d@falconindy.com>2010-01-15 11:07:46 -0500
commit4028b77ac73533bb8d916244d8a7254466e261af (patch)
treea4de55df031697bb784eb4e9481246d571b00fb7
parentfaf2c7501bd4052e0781b803e0acc219bac95b6a (diff)
downloadsquashfu-4028b77ac73533bb8d916244d8a7254466e261af.tar.gz
Fix if/then block in create_new_squash
-rwxr-xr-xsquashfu2
1 files changed, 1 insertions, 1 deletions
diff --git a/squashfu b/squashfu
index c959bde..ce05ffe 100755
--- a/squashfu
+++ b/squashfu
@@ -28,7 +28,7 @@ create_new_squash () {
if [[ $1 -eq -1 ]]; then
info "Creating seed (this may take a while)"
mksquashfs "${INCLUDES[@]}" "$SEED" -b 65536 -e "${EXCLUDES[@]}" >/dev/null
- if [[ $? -eq 0 ]];
+ if [[ $? -eq 0 ]]; then
mount_squash
info "Seed creation finished. It has been mounted at "$SQUASH_MOUNT" \
if you would like to make sure the proper files are included"