diff options
| author | Fuwn <[email protected]> | 2024-10-11 03:54:01 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-11 03:55:19 +0000 |
| commit | 893893d8442355ce2b38fc367aefc0e01253ce88 (patch) | |
| tree | 4d0ca9f4367620a7076619e6bcb485aa0e6551eb | |
| parent | format(sources.go): update field casing (diff) | |
| download | yae-893893d8442355ce2b38fc367aefc0e01253ce88.tar.xz yae-893893d8442355ce2b38fc367aefc0e01253ce88.zip | |
feat(wiene): switch default sources path
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | wiene.go | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ wiene .pre-commit-config.yaml result -sources.json +wiene.json @@ -34,7 +34,7 @@ COMMANDS: help, h Shows a list of commands or help for one command GLOBAL OPTIONS: - --sources value Sources path (default: "./sources.json") + --sources value Sources path (default: "./wiene.json") --help, -h show help COPYRIGHT: @@ -30,7 +30,7 @@ func main() { Flags: []cli.Flag{ &cli.StringFlag{ Name: "sources", - Value: "./sources.json", + Value: "./wiene.json", Usage: "Sources path", }, }, |