Skip to content

Commit 238e897

Browse files
committed
debug(win-sign): surface AzureSignTool stdout + upgrade AzureSignTool to latest
1 parent cb580b8 commit 238e897

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Install AzureSignTool
5858
if: ${{ startsWith(matrix.os, 'windows-') }}
59-
run: dotnet tool install --global AzureSignTool --version 6.0.1
59+
run: dotnet tool install --global AzureSignTool
6060

6161
- name: Check out Git repository
6262
uses: actions/checkout@v1

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ jobs:
221221

222222
- name: Install AzureSignTool
223223
if: ${{ startsWith(matrix.os, 'windows-') }}
224-
run: dotnet tool install --global AzureSignTool --version 6.0.1
224+
run: dotnet tool install --global AzureSignTool
225225

226226
- name: Check out Git repository
227227
uses: actions/checkout@v1

electron/hook/util.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ class Util {
66
return new Promise(function(resolve, reject) {
77
exec(command, (error, stdout, stderr) => {
88
console.log('Error: ', error, stderr);
9+
console.log('Stdout: ', stdout);
910

1011
if (error || stderr) {
1112
reject(error || stderr);

0 commit comments

Comments
 (0)