Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ci/teamcity/Delft3D/windows/test.kt
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ object WindowsTest : BuildType({
Expand-Archive -Path %file_path% -DestinationPath "temp_extract"

robocopy "temp_extract/x64" ${'$'}dest /E /XC /XN /XO

Start-Sleep -Seconds 3
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to copilot the Expand-Archive is synchronous. robocopy is also synchronous (it returns when finished copying). Why do you think this will fix the parallel problem?

""".trimIndent()
}
}
Expand Down
Loading