Skip to content

Commit

Permalink
Release: add support for md5 sums in windows
Browse files Browse the repository at this point in the history
Close gh-5219
  • Loading branch information
timmywil committed Mar 9, 2023
1 parent 68aa2ef commit f088c36
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions build/release/cdn.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ var
fs = require( "fs" ),
shell = require( "shelljs" ),
path = require( "path" ),
os = require( "os" ),

cdnFolder = "dist/cdn",

Expand Down Expand Up @@ -68,12 +69,13 @@ function makeArchives( Release, callback ) {

console.log( "Creating production archive for " + cdn );

var sum,
var i, sum, result,
archiver = require( "archiver" )( "zip" ),
md5file = cdnFolder + "/" + cdn + "-md5.txt",
output = fs.createWriteStream(
cdnFolder + "/" + cdn + "-jquery-" + Release.newVersion + ".zip"
),
rmd5 = /[a-f0-9]{32}/,
rver = /VER/;

output.on( "close", callback );
Expand All @@ -89,7 +91,18 @@ function makeArchives( Release, callback ) {
item.replace( rver, Release.newVersion );
} );

sum = Release.exec( "md5 -r " + files.join( " " ), "Error retrieving md5sum" );
if ( os.platform() === "win32" ) {
sum = [];
for ( i = 0; i < files.length; i++ ) {
result = Release.exec(
"certutil -hashfile " + files[ i ] + " MD5", "Error retrieving md5sum"
);
sum.push( rmd5.exec( result )[ 0 ] + " " + files[ i ] );
}
sum = sum.join( "\n" );
} else {
sum = Release.exec( "md5 -r " + files.join( " " ), "Error retrieving md5sum" );
}
fs.writeFileSync( md5file, sum );
files.push( md5file );

Expand Down

0 comments on commit f088c36

Please sign in to comment.