From 6428c16b8065eb34cbd5243f9800505a82212d8c Mon Sep 17 00:00:00 2001 From: slowy07 Date: Thu, 3 Aug 2023 14:58:28 +0700 Subject: [PATCH] fix: test rmdir to rd according information from microsoft official website : https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/rd Signed-off-by: slowy07 --- .github/workflows/cpp-testing-windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cpp-testing-windows.yml b/.github/workflows/cpp-testing-windows.yml index 12296ad..2bea371 100644 --- a/.github/workflows/cpp-testing-windows.yml +++ b/.github/workflows/cpp-testing-windows.yml @@ -29,7 +29,7 @@ jobs: cmake .. cmake --build . --config Release --target install cd ../.. - rmdir /s /q googletest + rd /s /q googletest - name: Build clara test windows run: |