From 980bbaa8e57282f30d133dd666aff19e8bf75ff6 Mon Sep 17 00:00:00 2001 From: hrntsm Date: Wed, 28 Feb 2024 10:31:18 +0900 Subject: [PATCH] Fix artifact dir path --- Tunny/Solver/HumanInTheLoop/HumanInTheLoopBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tunny/Solver/HumanInTheLoop/HumanInTheLoopBase.cs b/Tunny/Solver/HumanInTheLoop/HumanInTheLoopBase.cs index d40554e4..53df17b1 100644 --- a/Tunny/Solver/HumanInTheLoop/HumanInTheLoopBase.cs +++ b/Tunny/Solver/HumanInTheLoop/HumanInTheLoopBase.cs @@ -19,7 +19,7 @@ public HumanInTheLoopBase(string tmpPath, string storagePath) { TLog.MethodStart(); _tmpPath = tmpPath; - _artifactPath = Path.Combine(Path.GetDirectoryName(storagePath), "artifact"); + _artifactPath = Path.Combine(Path.GetDirectoryName(storagePath), "artifacts"); } public PyModule ImportBaseLibrary()