aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-11 03:54:01 +0000
committerFuwn <[email protected]>2024-10-11 03:55:19 +0000
commit893893d8442355ce2b38fc367aefc0e01253ce88 (patch)
tree4d0ca9f4367620a7076619e6bcb485aa0e6551eb
parentformat(sources.go): update field casing (diff)
downloadyae-893893d8442355ce2b38fc367aefc0e01253ce88.tar.xz
yae-893893d8442355ce2b38fc367aefc0e01253ce88.zip
feat(wiene): switch default sources path
-rw-r--r--.gitignore2
-rw-r--r--README.md2
-rw-r--r--wiene.go2
3 files changed, 3 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 4a52e8e..6758bf2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
wiene
.pre-commit-config.yaml
result
-sources.json
+wiene.json
diff --git a/README.md b/README.md
index ed2019c..b8a9f7e 100644
--- a/README.md
+++ b/README.md
@@ -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:
diff --git a/wiene.go b/wiene.go
index b8bf9cc..ec9f028 100644
--- a/wiene.go
+++ b/wiene.go
@@ -30,7 +30,7 @@ func main() {
Flags: []cli.Flag{
&cli.StringFlag{
Name: "sources",
- Value: "./sources.json",
+ Value: "./wiene.json",
Usage: "Sources path",
},
},