From 7fc293314c5ba1cf3e38e98bf3d1c3910208f9f7 Mon Sep 17 00:00:00 2001 From: Scott Beddall <45376673+scbedd@users.noreply.github.com> Date: Tue, 11 Jul 2023 13:51:53 -0700 Subject: [PATCH] Eliminate * is not a valid pathspec on non-windows machines (#6484) --- tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs b/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs index b32e1429403..e2ea8b5f488 100644 --- a/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs +++ b/tools/test-proxy/Azure.Sdk.Tools.TestProxy/Store/GitStore.cs @@ -246,7 +246,7 @@ private void Clean(GitAssetsConfiguration config) { try { - GitHandler.Run("checkout *", config); + GitHandler.Run("checkout .", config); GitHandler.Run("clean -xdf", config); } catch (GitProcessException e)