Skip to content

Commit

Permalink
Merge pull request #2006 from Gauravjeetsingh/devtools-shortcut
Browse files Browse the repository at this point in the history
Add console logs to see output for electron rebuild
  • Loading branch information
Gauravjeetsingh committed Jul 25, 2024
2 parents 7b5e3b2 + 20aebd6 commit 9a47c7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ git:
submodules: false
language: node_js
node_js: '18.18.0'
cache:
directories:
- $HOME/.electron
before_install:
- if [ "$TRAVIS_BRANCH" = "release" ]; then openssl aes-256-cbc -K $encrypted_fec05b564c85_key -iv $encrypted_fec05b564c85_iv
-in id_rsa.enc -out packaging/id_rsa -d; fi
Expand Down
4 changes: 3 additions & 1 deletion packaging/release
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ const release = async () => {
try {
if (platform === 'macArm') {
console.log(`Running rebuild for arm64:`);
await exec('npx electron-rebuild --arch=arm64');
const { stdout, stderr } = await exec('npx electron-rebuild --arch=arm64');
console.log('stdout:', stdout);
console.log('stderr:', stderr);
}
setTimeout(() => {
console.log(`npm run dist:${platform} is taking a long time, please wait...`);
Expand Down

0 comments on commit 9a47c7b

Please sign in to comment.