Skip to content

Commit 8190340

Browse files
authored
Fix variable name for ISO size check
1 parent 894ff4d commit 8190340

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ echo >&2 "===]> Info: Creating iso ... "
151151
# split iso
152152

153153
ISO_SIZE=$(du -m "${OUTPUT_PATH}/${FLAVOUR}-${VER}-${KERNEL_VERSION}-t2-${CODENAME}.iso" | cut -f1)
154-
if [ "$ISO_SIZE_MB" -lt 4000 ]; then
154+
if [ "$ISO_SIZE" -lt 4000 ]; then
155155
SPLIT_SIZE=1500M
156156
else
157157
SPLIT_SIZE=2000M

0 commit comments

Comments
 (0)