From 9f7df23788dee24f2ec1cf1b8ac6892ac41ca263 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Fri, 27 Jan 2023 22:39:08 +0100 Subject: [PATCH] Fix file copy --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c50bb106c..b40bb53ba 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -74,7 +74,7 @@ jobs: run: | .\Binaries\Editor\Win64\Development\FlaxTests.exe dotnet test -f net7.0 Binaries\Tests\Flax.Build.Tests.dll - copy Binaries\Editor\Win64\Development\FlaxEngine.CSharp.dll Binaries\Tests /Y - copy Binaries\Editor\Win64\Development\FlaxEngine.CSharp.runtimeconfig.json Binaries\Tests /Y - copy Binaries\Editor\Win64\Development\Newtonsoft.Json.dll Binaries\Tests /Y + xcopy /y Binaries\Editor\Win64\Development\FlaxEngine.CSharp.dll Binaries\Tests + xcopy /y Binaries\Editor\Win64\Development\FlaxEngine.CSharp.runtimeconfig.json Binaries\Tests + xcopy /y Binaries\Editor\Win64\Development\Newtonsoft.Json.dll Binaries\Tests dotnet test -f net7.0 Binaries\Tests\FlaxEngine.CSharp.dll