You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ma...@apache.org on 2017/04/30 18:56:42 UTC

archiva git commit: Fixes

Repository: archiva
Updated Branches:
  refs/heads/citest 6d634f8fe -> 12cfcc324


Fixes


Project: http://git-wip-us.apache.org/repos/asf/archiva/repo
Commit: http://git-wip-us.apache.org/repos/asf/archiva/commit/12cfcc32
Tree: http://git-wip-us.apache.org/repos/asf/archiva/tree/12cfcc32
Diff: http://git-wip-us.apache.org/repos/asf/archiva/diff/12cfcc32

Branch: refs/heads/citest
Commit: 12cfcc3248c21279ebebaf3b3e2e5fec120f28bc
Parents: 6d634f8
Author: Martin Stockhammer <ma...@apache.org>
Authored: Sun Apr 30 20:56:33 2017 +0200
Committer: Martin Stockhammer <ma...@apache.org>
Committed: Sun Apr 30 20:56:33 2017 +0200

----------------------------------------------------------------------
 src/ci/scripts/cleanup.ps1 | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/archiva/blob/12cfcc32/src/ci/scripts/cleanup.ps1
----------------------------------------------------------------------
diff --git a/src/ci/scripts/cleanup.ps1 b/src/ci/scripts/cleanup.ps1
index 0055940..6689051 100644
--- a/src/ci/scripts/cleanup.ps1
+++ b/src/ci/scripts/cleanup.ps1
@@ -35,7 +35,13 @@ if ($Verbose)
 
 foreach ($procName in $seleniumProcesses) 
 {
+  Write-Output "Filter: name = '$procName'"
   $processes = Get-WmiObject Win32_Process -Filter "name = '$procName'" | Where-Object {$_.GetOwner().User -eq $currentUser } 
+  $processes2 = Get-WmiObject Win32_Process -Filter "name = '$procName'" 
+  if ($Verbose) {
+    Write-Output "Processes $processes"
+    Write-Output "Processes2 $processes2"
+  }
   foreach($proc in $processes)
   {
       if($proc.CommandLine.Contains("selenium-server"))