diff --git a/README.md b/README.md index aadc6ea..73a0209 100644 --- a/README.md +++ b/README.md @@ -41,13 +41,13 @@ Run the Docker container: ```bash docker run --rm \ - -v $(pwd):/workspace \ - -v $HOME/.config/gibidify:/config \ - ghcr.io/ivuorinen/gibidify: \ - -source /workspace/your_source_directory \ - -destination /workspace/output.txt \ - --prefix="Your prefix text" \ - --suffix="Your suffix text" + -v $(pwd):/workspace \ + -v $HOME/.config/gibidify:/config \ + ghcr.io/ivuorinen/gibidify: \ + -source /workspace/your_source_directory \ + -destination /workspace/output.txt \ + --prefix="Your prefix text" \ + --suffix="Your suffix text" ``` ## Configuration diff --git a/fileproc/fake_walker.go b/fileproc/fake_walker.go index 1e5ef5d..fc156fd 100644 --- a/fileproc/fake_walker.go +++ b/fileproc/fake_walker.go @@ -8,7 +8,7 @@ type FakeWalker struct { } // Walk returns predetermined file paths or an error, depending on FakeWalker's configuration. -func (fw FakeWalker) Walk(root string) ([]string, error) { +func (fw FakeWalker) Walk(_ string) ([]string, error) { if fw.Err != nil { return nil, fw.Err }