fixing return value

Signed-off-by: Andreas Elvers <andreas@work.de>
This commit is contained in:
Andreas Elvers 2017-10-13 13:33:29 +02:00
parent 9a166a74d1
commit 547dd4f95d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ pack() {
}
save() {
[ $SAVE -eq 1 ] || return
[ $SAVE -eq 1 ] || return 0
tar --numeric-owner -C $ROOTFS -c . | xz > rootfs.tar.xz
}