Skip to content

Commit 765b86d

Browse files
committed
moving dictionary fule to a proper location
1 parent 2611d4f commit 765b86d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FROM scratch
1010

1111
COPY --from=build-stage /bruter /bruter
1212

13-
ADD pkg/fuzzer/apache-list pkg/fuzzer/apache-list
13+
ADD db/apache-list db/apache-list
1414
ADD templates/ templates/
1515
ADD static/ static/
1616

Diff for: cmd/bruter/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ func main() {
9494
}()
9595

9696
buffer := make([]byte, 500000) // 500K(almost)
97-
file, err := os.Open("pkg/fuzzer/apache-list")
97+
file, err := os.Open("db/apache-list")
9898
if err != nil {
9999
log.Fatal().Err(err).Msg("")
100100
}

Diff for: pkg/fuzzer/apache-list renamed to db/apache-list

File renamed without changes.

0 commit comments

Comments
 (0)