Skip to content

Commit

Permalink
fix lint complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
x90skysn3k committed Feb 23, 2024
1 parent 7b3329c commit bab85d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions brutespray/brutespray.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func Execute() {
<-sigs
pterm.DefaultSection.Println("\nReceived an interrupt signal, shutting down...")
time.Sleep(5 * time.Second)
bar.Stop()
_, _ = bar.Stop()
os.Exit(0)
}()

Expand Down Expand Up @@ -200,5 +200,5 @@ func Execute() {
sem <- struct{}{}
}
bruteForceWg.Wait()
bar.Stop()
_, _ = bar.Stop()
}

0 comments on commit bab85d2

Please sign in to comment.