From ee1195fd4babc07edd6038d04eb5dc1da37a7f61 Mon Sep 17 00:00:00 2001 From: Lisa Glover Date: Thu, 7 Nov 2024 10:50:47 -0800 Subject: [PATCH] Fixed the error in the PowerShell script --- BuildTestReleaseMATLAB.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BuildTestReleaseMATLAB.ps1 b/BuildTestReleaseMATLAB.ps1 index 3cf4c16b..0225aab0 100644 --- a/BuildTestReleaseMATLAB.ps1 +++ b/BuildTestReleaseMATLAB.ps1 @@ -11,7 +11,7 @@ Remove-Item "$matlabdir/vts_wrapper/vts_libraries" -Recurse -ErrorAction Ignore Remove-Item "$matlabdir/vts_wrapper/results*" -Recurse -ErrorAction Ignore Write-Host "Test MATLAB unit tests" -ForegroundColor Green -# RunMATLABUnitTests copies Vts\publish\win-x64 files to matlab/vts_wrapper/vts_libraries +# RunMATLABUnitTests copies Vts\publish\local files to matlab/vts_wrapper/vts_libraries Write-Host "Run vts_wrapper tests" -ForegroundColor Green Write-Host "MATLAB not exiting nicely indicates test failure" -ForegroundColor Green $vtslevel = $PWD @@ -23,7 +23,7 @@ Remove-Item $matlablibdir -Recurse -ErrorAction Ignore New-Item $matlablibdir -ItemType "directory" # put supporting libraries into vts_libraries folder -$vtslibraries = "$vtslevel\publish\win-x64" +$vtslibraries = "$vtslevel\publish\local" Copy-Item -Path "$vtslibraries\*" -Destination "$matlablibdir" matlab -wait -r "vts_tests; quit"