From df412f9434967f5789a8e33d2f404992fd5f17fe Mon Sep 17 00:00:00 2001 From: Marcus Kok Date: Sat, 6 Jul 2024 13:12:13 -0400 Subject: [PATCH] fix init command --- cmd/init.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/init.go b/cmd/init.go index 3417bf9..7b0a059 100644 --- a/cmd/init.go +++ b/cmd/init.go @@ -67,7 +67,7 @@ func runInitCommand(cmd *cobra.Command, args []string) { log.Fatalf("Unable to create dotfile structure: %s", error.Error(err)) } - _, err = fs.Create(path.Join(DotfilePath, "dotctl/config")) + _, err = fs.Create(path.Join(DotfilePath, "dotctl/config.yml")) if err != nil { panic(fmt.Errorf("Unable to create config file %w", err)) }