]> source.dussan.org Git - archiva.git/commitdiff
Test
authorMartin Stockhammer <martin_s@apache.org>
Sun, 14 May 2017 19:14:36 +0000 (21:14 +0200)
committerMartin Stockhammer <martin_s@apache.org>
Sun, 14 May 2017 19:14:36 +0000 (21:14 +0200)
src/ci/scripts/updateSeleniumDrivers.ps1

index f96d5fb6f7bc171e39eb3b27c79d7cd4f6c50911..a4380224d3396bbb3e23922ab187c3e5ee3f21fa 100644 (file)
@@ -32,6 +32,7 @@ param (
 $psVersion = $PSVersionTable.PSVersion
 
 Write-Output "PS-Version: $psVersion"
+Write-Output "Verbose: $Verbose, Force: $Force"
 
 $urls = @{
   "iedriver\2.53.1\win64\DriverServer.zip"="http://selenium-release.storage.googleapis.com/2.53/IEDriverServer_x64_2.53.1.zip"
@@ -49,8 +50,8 @@ foreach ($h in $urls.GetEnumerator()) {
   $downloadFile = "C:\jenkins\tools\$($h.Name)"
   $downloadDir = Split-Path $downloadFile -Parent
 
-  if ($Force -And (Test-Path -Path $downloadFile ) ) {
-    Remove-Item $downloadDir\* -recurse
+  if ($Force -And (Test-Path -Path $downloadDir ) ) {
+    Get-ChildItem -Path $downloadDir -Recurse | Remove-Item -force -recurse
   }
 
   if(!(Test-Path -Path $downloadDir )){