mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 11:55:26 +00:00
Fixed failing tests due to missing field declaration
This commit is contained in:
parent
793db8a614
commit
010bab5aaf
@ -23,9 +23,11 @@ import (
|
||||
)
|
||||
|
||||
func ConfigureOptions() error {
|
||||
goflags.DefaultFileNormalizedStringSliceOptions.IsFromFile = func(s string) bool {
|
||||
isFromFileFunc := func(s string) bool {
|
||||
return !isTemplate(s)
|
||||
}
|
||||
goflags.DefaultFileNormalizedStringSliceOptions.IsFromFile = isFromFileFunc
|
||||
goflags.DefaultFileOriginalNormalizedStringSliceOptions.IsFromFile = isFromFileFunc
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user