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 8e1537a commit d6626b5Copy full SHA for d6626b5
gulpfile.js
@@ -191,12 +191,9 @@ var featureFiles = 'https://s3-eu-west-1.amazonaws.com/remoting.neotechnology.
191
var featureHome = './build/tck';
192
193
gulp.task('download-tck', function() {
194
- if( !fs.existsSync(featureHome) ) {
195
- // Need to download
196
- return download(featureFiles)
197
- .pipe(decompress({strip: 1}))
198
- .pipe(gulp.dest(featureHome));
199
- }
+ return download(featureFiles)
+ .pipe(decompress({strip: 1}))
+ .pipe(gulp.dest(featureHome));
200
});
201
202
gulp.task('run-tck', ['download-tck', 'nodejs'], function() {
0 commit comments