Skip to content

Commit

Permalink
updating install tools for Electron 32
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Sep 26, 2024
1 parent 568b0d9 commit eb760b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
matrix:
# os: [macos-13, macos-14, ubuntu-22.04, windows-2022]
os: [ macos-14, ubuntu-22.04]
electron: [31.6.0, 32.1.2]
electron: [32.1.2]
# electron: [29.4.6, 30.5.1, 31.6.0, 32.1.2]
# electron: [31.6.0, 32.1.0]

Expand Down
8 changes: 5 additions & 3 deletions tools/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,9 +158,11 @@ else {

if(version.startsWith('32')){
configure.on('close', (code) => {
Promise.all(replaceCppRuntime()).then((code) => {
spawn('node-gyp', ['build'], { stdio: 'inherit' });
});
spawn('ls', ['-R', 'build'], { stdio: 'inherit' });

// Promise.all(replaceCppRuntime()).then((code) => {
// spawn('node-gyp', ['build'], { stdio: 'inherit' });
// });
});
}else{
configure.on('close', (code) => {
Expand Down

0 comments on commit eb760b7

Please sign in to comment.