Skip to content

Commit

Permalink
Fix hashes file extension (#922)
Browse files Browse the repository at this point in the history
* Replace period in extensions with underscores
  • Loading branch information
algobarb authored Mar 15, 2022
1 parent 6618180 commit e2d9e67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mule/sign.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ make_hashes () {
for ext in ${EXTENSIONS[*]}
do
if ls *"$VERSION"*."$ext"; then
HASHFILE="hashes_${OS_TYPE}_${ARCH}_${VERSION}_${ext}"
HASHFILE="hashes_${OS_TYPE}_${ARCH}_${VERSION}_${ext//./_}"
{
md5sum *"$VERSION"*."$ext" ;
shasum -a 256 *"$VERSION"*."$ext" ;
Expand Down

0 comments on commit e2d9e67

Please sign in to comment.