lower minimum pendrive size to ~100 Mb

This commit is contained in:
Attila Lendvai 2023-08-17 23:10:42 +02:00
parent 95201a77b3
commit a21e995567
No known key found for this signature in database
GPG Key ID: FEFA9FE55CF6E3CD

View File

@ -23,7 +23,7 @@ getPendriveSize()
hasBigEnoughPendrive()
{
local size=$(getPendriveSize)
if [ $size -ge 600000 ]; then
if [ $size -ge 100000 ]; then
log "Found a pendrive of size: $(($size / 2 / 1024)) MB"
return 0
else