Skip to content

Commit

Permalink
Update gulp to 5.0.0.
Browse files Browse the repository at this point in the history
- Set encoding as false to treat content as binary for gulp.src

Signed-off-by: Roland Grunberg <[email protected]>
  • Loading branch information
rgrunber committed Sep 19, 2024
1 parent 2268d08 commit 9d78ce1
Show file tree
Hide file tree
Showing 3 changed files with 902 additions and 3,010 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function download_server_fn(){
function build_server_fn(){
fse.removeSync('./server');
cp.execSync(mvnw() + ' -Pserver-distro clean package -Declipse.jdt.ls.skipGradleChecksums', { cwd: server_dir, stdio: [0, 1, 2] });
gulp.src(server_dir + '/org.eclipse.jdt.ls.product/distro/*.tar.gz')
gulp.src(server_dir + '/org.eclipse.jdt.ls.product/distro/*.tar.gz', { encoding: false })
.pipe(decompress())
.pipe(gulp.dest('./server'));
}
Loading

0 comments on commit 9d78ce1

Please sign in to comment.