Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/example_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build !race
// +build !race

package nuclei_test

Expand Down
2 changes: 1 addition & 1 deletion pkg/operators/common/dsl/dsl.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func init() {
}))

dsl.PrintDebugCallback = func(args ...interface{}) error {
gologger.Debug().Msgf("print_debug value: %s", fmt.Sprint(args))
gologger.Debug().Msgf("print_debug value: %s", fmt.Sprint(args...))
return nil
}

Expand Down
1 change: 0 additions & 1 deletion pkg/scan/events/scan_noop.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build !stats
// +build !stats

package events

Expand Down
1 change: 0 additions & 1 deletion pkg/scan/events/stats_build.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build stats
// +build stats

package events

Expand Down
2 changes: 0 additions & 2 deletions pkg/utils/json/json.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
//go:build (linux || darwin || windows) && (amd64 || arm64)
// +build linux darwin windows
// +build amd64 arm64

package json

Expand Down
1 change: 0 additions & 1 deletion pkg/utils/json/json_fallback.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//go:build !(linux || darwin || windows) || !(amd64 || arm64)
// +build !linux,!darwin,!windows !amd64,!arm64

package json

Expand Down
Loading