Fix error return value

Closes #39
This commit is contained in:
Drew Bonasera 2018-01-27 00:03:04 -05:00 committed by GitHub
parent e7857ff47c
commit 2aa44f0ecd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ if [[ $? != 0 ]]; then
mv $mountdir/etc/rc.local.bak $mountdir/etc/rc.local
umount $mountdir
losetup -d $loopback
exit $rc
exit -7
fi
sleep 1