Merge pull request #62 from rdamen/master

mkimage.sh.in: fix truncate size argument
This commit is contained in:
Juan RP 2016-03-08 10:25:49 +01:00
commit 4477f82d09
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ case "$DD_VERSION" in
esac
info_msg "Creating disk image ($IMGSIZE) ..."
truncate -s "${IMGSIZE}M" $FILENAME >/dev/null 2>&1
truncate -s "${IMGSIZE}" $FILENAME >/dev/null 2>&1
ROOTFSDIR=$(mktemp -d)