Skip to content

Commit

Permalink
Fix artifact dir path
Browse files Browse the repository at this point in the history
  • Loading branch information
hrntsm committed Feb 28, 2024
1 parent e5e9703 commit 980bbaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tunny/Solver/HumanInTheLoop/HumanInTheLoopBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 980bbaa

Please sign in to comment.