fix string formatting bug causing mangled id's
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Steven Polley 2023-07-10 18:08:34 -06:00
parent 238dab70fe
commit 1f3209f55e
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ func hashFile(filename string) (string, error) {
return "", fmt.Errorf("failed to copy data from file to hash function: %v", err)
}
return string(h.Sum(nil)), nil
return fmt.Sprintf("%x", h.Sum(nil)), nil
}
// false if a file is not a LineageOS ROM .zip file