aboutsummaryrefslogtreecommitdiff
path: root/internal/commands
diff options
context:
space:
mode:
Diffstat (limited to 'internal/commands')
-rw-r--r--internal/commands/init.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/commands/init.go b/internal/commands/init.go
index c4bc138..94433ab 100644
--- a/internal/commands/init.go
+++ b/internal/commands/init.go
@@ -14,6 +14,9 @@ func Init(sources *yae.Environment) func(c *cli.Context) error {
return fmt.Errorf("sources file already exists")
}
+ sources.Sources = make(map[string]yae.Source)
+ sources.Schema = "https://raw.githubusercontent.com/Fuwn/yae/refs/heads/main/yae.schema.json"
+
if c.Bool("dry-run") {
return nil
}