diff --git a/main.go b/main.go index 5a5b5f4..0a89feb 100644 --- a/main.go +++ b/main.go @@ -56,7 +56,10 @@ func Stage(ctx context.Context) error { if _, err := os.Stat(YamlFile); err == nil { return nil } - b, _ := yaml.Marshal(Yaml{D: true}) + b, _ := yaml.Marshal(Yaml{ + D: true, + O: "/volume1/video/Bel/Anime/{{.Title}}/Season_{{.Season}}", + }) return ioutil.WriteFile(YamlFile, b, os.ModePerm) }