uvol: add missing quote

Add missing quote which broke the autopart script.

Fixes: b1edbe349 ("uvol: fix regression in handling fractional megabytes free")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
Daniel Golle 2023-01-25 03:33:43 +00:00
parent ac9027aebb
commit adce04d840
No known key found for this signature in database
GPG Key ID: 5A8F39C31C3217CA
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=uvol
PKG_VERSION:=0.9
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
PKG_LICENSE:=GPL-2.0-or-later

View File

@ -62,7 +62,7 @@ get_free_area() {
continue
;;
[0-9]*)
[ $size" -lt $((100 * 1024 * 1024)) ] && continue
[ "$size" -lt $((100 * 1024 * 1024)) ] && continue
[ "$found" ] || echo "start=$start, size=$sectors"
found=1
;;