mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Release: revert change that broke release
763ade6dda (diff-ba51b2c9ce2527b1f191cb2c210748a4f18cccc38893f7ffe1597fb1d23ce027L72)
The above change did not work because makeArchives was
not made to return a Promise
This commit is contained in:
parent
f85d521cde
commit
399b201bb3
@ -65,9 +65,10 @@ module.exports = function( Release ) {
|
||||
* Publish to distribution repo and npm
|
||||
* @param {Function} callback
|
||||
*/
|
||||
dist: async callback => {
|
||||
await cdn.makeArchives( Release );
|
||||
dist( Release, distFiles, callback );
|
||||
dist: function( callback ) {
|
||||
cdn.makeArchives( Release, function() {
|
||||
dist( Release, distFiles, callback );
|
||||
} );
|
||||
}
|
||||
} );
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user