Skip to content

Commit

Permalink
Merge pull request #177 from moonD4rk/fix/logbug
Browse files Browse the repository at this point in the history
fix: handle error if run binary failed
  • Loading branch information
moonD4rk committed Oct 30, 2022
2 parents 168df98 + 01b2bc5 commit c47ca78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -190,4 +190,4 @@ result/
results/

hack-browser-data
!/hack-browser-data
!/cmd/hack-browser-data
2 changes: 1 addition & 1 deletion .golangci.yml
Expand Up @@ -64,4 +64,4 @@ issues:
linters:
- 'unused'
max-issues-per-linter: 0
max-same-issues: 0
max-same-issues: 0
2 changes: 1 addition & 1 deletion cmd/hack-browser-data/main.go
Expand Up @@ -69,6 +69,6 @@ func Execute() {
}
err := app.Run(os.Args)
if err != nil {
log.Error(err)
panic(err)
}
}

0 comments on commit c47ca78

Please sign in to comment.