Skip to content

Commit d6626b5

Browse files
committed
Always download featurefiles
1 parent 8e1537a commit d6626b5

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

gulpfile.js

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,12 +191,9 @@ var featureFiles = 'https://s3-eu-west-1.amazonaws.com/remoting.neotechnology.
191191
var featureHome = './build/tck';
192192

193193
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-
}
194+
return download(featureFiles)
195+
.pipe(decompress({strip: 1}))
196+
.pipe(gulp.dest(featureHome));
200197
});
201198

202199
gulp.task('run-tck', ['download-tck', 'nodejs'], function() {

0 commit comments

Comments
 (0)