Signal async task completion for GULP 4.0 (#362)

This commit is contained in:
Yaohai Zheng 2018-08-12 18:53:05 -07:00 committed by GitHub
parent 90ea267a54
commit a51187af18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ gulp.task('build_server', () => {
cwd: server_dir,
stdio: [0, 1, 2]
});
gulp.src(server_dir + '/com.microsoft.java.debug.plugin/target/com.microsoft.java.debug.*.jar')
return gulp.src(server_dir + '/com.microsoft.java.debug.plugin/target/com.microsoft.java.debug.*.jar')
.pipe(gulp.dest('./server'));
});
@ -32,5 +32,5 @@ function isLinux() {
}
function mvnw() {
return isWin()?"mvnw.cmd":"./mvnw";
return isWin() ? "mvnw.cmd" : "./mvnw";
}