From dd2f509e692b956186ff927f2a66965afc33d1e2 Mon Sep 17 00:00:00 2001 From: Johan Gunnarsson Date: Sun, 19 May 2019 13:29:11 +0200 Subject: [PATCH] build-debian: Fix off-by-one introduced by previous commit --- scripts/build-debian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-debian b/scripts/build-debian index ab95a37..28a6d8c 100755 --- a/scripts/build-debian +++ b/scripts/build-debian @@ -119,7 +119,7 @@ find debian ! -type d -printf "/%P\n" | sort > "/artifacts/${OS}-${DIST}-${ARCH} # Make a ext4 filesystem of this and put it into the image rm -f ext4.img -fallocate -l 1875MiB ext4.img +fallocate -l 1874MiB ext4.img mkfs.ext4 -d debian ext4.img gzip ext4.img