1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

scripts: Remove beescrawl.dat with -f

Avoid interactive prompts due to e.g. bad file modes.
This commit is contained in:
Vladimir Panteleev 2020-06-17 06:59:43 +00:00
parent 8aa343cecb
commit 2427dd370e
No known key found for this signature in database
GPG Key ID: 5004F0FAD051576D

View File

@ -134,7 +134,7 @@ fi
fi
if (( "$OLD_SIZE" != "$NEW_SIZE" )); then
INFO "Resize db: $OLD_SIZE -> $NEW_SIZE"
[ -f "$BEESHOME/beescrawl.dat" ] && rm "$BEESHOME/beescrawl.dat"
rm -f "$BEESHOME/beescrawl.dat"
truncate -s $NEW_SIZE $DB_PATH
fi
chmod 700 "$DB_PATH"