Skip to content

Commit

Permalink
build.sh: fix rm checksums.txt files
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjbq7 committed Feb 7, 2024
1 parent 12387a6 commit dc11769
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sh
Expand Up @@ -562,9 +562,9 @@ set_current_branch() {
update_boot_image() {
set_boot_image_vars
$ECHO "Deleting old images..."
rm -f "checksums.txt*" > /dev/null 2>&1
rm -f "$BOOT_IMAGE.{?,??}" > /dev/null 2>&1
rm -f "temp/staging.*.image" > /dev/null 2>&1
rm -f checksums.txt* > /dev/null 2>&1
rm -f "$BOOT_IMAGE".{?,??} > /dev/null 2>&1
rm -f temp/staging.*.image > /dev/null 2>&1
if [[ -f $BOOT_IMAGE ]] ; then
get_url "$CHECKSUM_URL"
local factorcode_md5
Expand Down

0 comments on commit dc11769

Please sign in to comment.