Skip to content

Commit 1453ad4

Browse files
authored
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).
1 parent 120fe2e commit 1453ad4

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

build/gulpfile.vscode.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,8 @@ gulp.task('clean-electron', util.rimraf('.build/electron'));
166166
gulp.task('electron', ['clean-electron'], getElectron(process.arch));
167167
gulp.task('electron-ia32', ['clean-electron'], getElectron('ia32'));
168168
gulp.task('electron-x64', ['clean-electron'], getElectron('x64'));
169+
gulp.task('electron-arm', ['clean-electron'], getElectron('arm'));
170+
gulp.task('electron-arm64', ['clean-electron'], getElectron('arm64'));
169171

170172

171173
/**

0 commit comments

Comments
 (0)