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:
parent
ac9027aebb
commit
adce04d840
|
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=uvol
|
PKG_NAME:=uvol
|
||||||
PKG_VERSION:=0.9
|
PKG_VERSION:=0.9
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
||||||
PKG_LICENSE:=GPL-2.0-or-later
|
PKG_LICENSE:=GPL-2.0-or-later
|
||||||
|
|
|
@ -62,7 +62,7 @@ get_free_area() {
|
||||||
continue
|
continue
|
||||||
;;
|
;;
|
||||||
[0-9]*)
|
[0-9]*)
|
||||||
[ $size" -lt $((100 * 1024 * 1024)) ] && continue
|
[ "$size" -lt $((100 * 1024 * 1024)) ] && continue
|
||||||
[ "$found" ] || echo "start=$start, size=$sectors"
|
[ "$found" ] || echo "start=$start, size=$sectors"
|
||||||
found=1
|
found=1
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in New Issue