Skip to content

Commit

Permalink
Windows comp fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alaindargelas committed Aug 23, 2024
1 parent bd182ca commit a27aff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Simulation/Simulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,8 @@ int Simulator::GenerateAutoTestbench() {
m_compiler->GetDataPath() / "python3" / "tb_generator.py";
std::string workingDir =
std::filesystem::current_path() / ProjManager()->projectName();
std::string command = std::string(python3Path) + " " +
std::string(scriptPath) + " " +
std::string command = std::string(python3Path.c_str()) + " " +
std::string(scriptPath.c_str()) + " " +
ProjManager()->projectName() + " " +
std::string(std::filesystem::current_path());
FileUtils::WriteToFile(CommandLogFile("comp"), command);
Expand Down

0 comments on commit a27aff7

Please sign in to comment.