We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc76a97 commit dcd2c8fCopy full SHA for dcd2c8f
build/release.js
@@ -58,12 +58,6 @@ module.exports = function( Release ) {
58
* @param {Function} callback
59
*/
60
dist: function( callback ) {
61
-
62
- if ( Release.isTest ) {
63
- callback();
64
- return;
65
- }
66
67
dist( Release, callback );
68
}
69
});
build/release/dist.js
@@ -104,13 +104,13 @@ module.exports = function( Release, complete ) {
104
Release.dir.repo = Release.dir.dist;
105
106
107
- Release.walk([
+ Release.walk( [
108
Release._section( "Copy files to distribution repo" ),
109
clone,
110
copy,
111
Release.confirmReview,
112
113
Release._section( "Pushing files to distribution repo" ),
114
push
115
- ], complete);
+ ], complete );
116
};
0 commit comments