Skip to content

Commit

Permalink
Make linter workflow work again
Browse files Browse the repository at this point in the history
  • Loading branch information
waybackarchiver committed Jun 26, 2024
1 parent f8019cd commit 2d8bb80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reduxer/reduxer.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func Do(ctx context.Context, opts *config.Options, urls ...*url.URL) (Reduxer, e
}

// No supported browser found, returns empty results to ensure archives are normal.
if _, err := exec.LookPath(helper.FindChromeExecPath()); err != nil {
if _, err = exec.LookPath(helper.FindChromeExecPath()); err != nil {
logger.Debug("No browser detected, no artifacts scraped.")
return bs, nil
}
Expand Down

0 comments on commit 2d8bb80

Please sign in to comment.