From f2cf82e3ceb6399aacbc04c1ddb6362b763389a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Laban?= Date: Fri, 15 Nov 2024 16:06:11 -0500 Subject: [PATCH] chore: Adjust delete --- build/templates/package-validation.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/templates/package-validation.yml b/build/templates/package-validation.yml index 9a630e57..d5065d83 100644 --- a/build/templates/package-validation.yml +++ b/build/templates/package-validation.yml @@ -111,8 +111,7 @@ steps: displayName: Install Project Templates - bash: | - cd ~/.nuget - rm -fRv *.nupkg + find ~/.nuget -type f -name "*.nupkg" -exec rm {} \; displayName: Cleanup nupkg from package cache condition: eq(variables['Agent.OS'], 'Linux')