From 5f5015e1524d74752dd2638611eb524d2c37c2d4 Mon Sep 17 00:00:00 2001 From: bel Date: Sat, 5 Apr 2025 01:05:10 -0600 Subject: [PATCH] default for me --- main.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) }