From 2f26c83804151aa8ff17ca7a992d426f1ee56037 Mon Sep 17 00:00:00 2001 From: 5amCurfew Date: Wed, 4 Sep 2024 23:29:09 +0100 Subject: [PATCH] default to dag.yml --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 54fb080..803a2b4 100644 --- a/main.go +++ b/main.go @@ -33,8 +33,8 @@ var rootCmd = &cobra.Command{ var cfgPath string if len(args) == 0 { // If no argument provided, look for config.json in the current directory - log.Info("[INIT] file path not provided -> defaulting to orca.yml") - cfgPath = "orca.yml" + log.Info("[INIT] file path not provided -> defaulting to dag.yml") + cfgPath = "dag.yml" } else { cfgPath = args[0] }