From 9108e8b5ef9dd32ddb41eb38fdd1b05fe26187c0 Mon Sep 17 00:00:00 2001
From: Remy Prechelt <prechelt@hawaii.edu>
Date: Mon, 26 Oct 2020 22:51:29 -1000
Subject: [PATCH] Rename <name>.yaml to config.yaml

---
 Outputs/OutputManager.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Outputs/OutputManager.h b/Outputs/OutputManager.h
index 07a119ce2..2a1af4760 100644
--- a/Outputs/OutputManager.h
+++ b/Outputs/OutputManager.h
@@ -87,7 +87,7 @@ namespace corsika::output {
       std::filesystem::create_directory(path);
 
       // write the config for this output to the file
-      WriteNode(outputs_.at(name).get().GetConfig(), path / (name + ".yaml"));
+      WriteNode(outputs_.at(name).get().GetConfig(), path / "config.yaml");
     }
 
   public:
-- 
GitLab