Skip to content

Commit 2a328a0

Browse files
committed
log, don't error
1 parent 3ed8b04 commit 2a328a0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
0 Bytes
Binary file not shown.

packages/hadron-build/signtool/signtool.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ func main() {
6464

6565
err := cmd.Run()
6666
if err != nil {
67-
log.Fatal("Error signing the file", err)
67+
fmt.Println("Error signing the file")
68+
fmt.Println(err)
69+
// if we error out then we won't see much because of howelectron-windows-installer fails
70+
return
6871
}
6972

7073
fmt.Println("File signed successfully.")

0 commit comments

Comments
 (0)