mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
Adding electron ARM and ARM64 tasks
Adding tasks to allow for explicitly download ARM and ARM64 versions of Electron when it is not the native architecture of the build machine (for cross-compiling).
This commit is contained in:
@@ -166,6 +166,8 @@ gulp.task('clean-electron', util.rimraf('.build/electron'));
|
||||
gulp.task('electron', ['clean-electron'], getElectron(process.arch));
|
||||
gulp.task('electron-ia32', ['clean-electron'], getElectron('ia32'));
|
||||
gulp.task('electron-x64', ['clean-electron'], getElectron('x64'));
|
||||
gulp.task('electron-arm', ['clean-electron'], getElectron('arm'));
|
||||
gulp.task('electron-arm64', ['clean-electron'], getElectron('arm64'));
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user