Skip to content

Commit

Permalink
Ortographic error fixed in 'pleaes'
Browse files Browse the repository at this point in the history
  • Loading branch information
hytalo-bassi authored and firefart committed Jun 21, 2021
1 parent 1a854df commit f7bc132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/cmd/dir.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ func parseDirOptions() (*libgobuster.Options, *gobusterdir.OptionsDir, error) {
plugin.StatusCodesBlacklistParsed = ret3

if plugin.StatusCodes != "" && plugin.StatusCodesBlacklist != "" {
return nil, nil, fmt.Errorf("status-codes and status-codes-blacklist are both set, pleaes set only one")
return nil, nil, fmt.Errorf("status-codes and status-codes-blacklist are both set, please set only one")
}

if plugin.StatusCodes == "" && plugin.StatusCodesBlacklist == "" {
return nil, nil, fmt.Errorf("status-codes and status-codes-blacklist are both not set, pleaes set one")
return nil, nil, fmt.Errorf("status-codes and status-codes-blacklist are both not set, please set one")
}

plugin.UseSlash, err = cmdDir.Flags().GetBool("add-slash")
Expand Down

0 comments on commit f7bc132

Please sign in to comment.