default for me

main
bel 2025-04-05 01:05:10 -06:00
parent 12bb9c808b
commit 5f5015e152
1 changed files with 4 additions and 1 deletions

View File

@ -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)
}