From 2a666fa27bd3d8746466f556d972d4704c2d2fc9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Gaidamour?= <jeremie.gaidamour@inria.fr>
Date: Wed, 24 Aug 2016 17:33:13 +0200
Subject: [PATCH] [dev] minor bug fix in run-g5kchecks postprocessing

---
 generators/run-g5kchecks/postprocessing.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/generators/run-g5kchecks/postprocessing.rb b/generators/run-g5kchecks/postprocessing.rb
index 5941378f4fa..40473323dd5 100644
--- a/generators/run-g5kchecks/postprocessing.rb
+++ b/generators/run-g5kchecks/postprocessing.rb
@@ -44,7 +44,7 @@ list_of_yaml_files.each { |filename|
 
     hash = {node_uid => hash}
     
-    new_filename = "../../input/grid5000/sites/#{site_uid}/clusters/#{cluster_uid}/nodes/" + node_uid + ".yaml"
+    new_filename = Pathname("../../input/grid5000/sites/#{site_uid}/clusters/#{cluster_uid}/nodes/" + node_uid + ".yaml")
     new_filename.dirname.mkpath()
 
     write_yaml(new_filename, hash)
-- 
GitLab