Skip to content
This repository was archived by the owner on May 18, 2019. It is now read-only.

Commit 73c7be8

Browse files
sjoelundOpenModelica-Hudson
authored andcommitted
Fix path that the FMU binary is copied back into
Belonging to [master]: - #3031
1 parent 7984f74 commit 73c7be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Compiler/Script/CevalScriptBackend.mo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3479,7 +3479,7 @@ algorithm
34793479
fail();
34803480
end if;
34813481
// Copy the files back from the volume (via the container) to the filesystem
3482-
cmd := "docker cp " + quote + containerID + ":/data/" + fmutmp + quote + " " + quote + fmutmp + quote;
3482+
cmd := "docker cp " + quote + containerID + ":/data/" + fmutmp + quote + " .";
34833483
if 0 <> System.systemCall(cmd, outFile=logfile) then
34843484
Error.addMessage(Error.SIMULATOR_BUILD_ERROR, {cmd + ":\n" + System.readFile(logfile)});
34853485
fail();

0 commit comments

Comments
 (0)