Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
RahulARanger committed May 14, 2022
2 parents fce8d12 + 99e2eb1 commit 85616de
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions gate.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,10 @@ switch($true){

Default{
$store = @(Get-RunningProjects);
if($store.length -gt 0){$store | Out-GridView -passthru -Title "These processes must be closed in-order to proceed forward!"}
if($store.length -gt 0){exit 5} else {}
if($store.length -gt 0){
$store | Out-GridView -passthru -Title "These processes must be closed in-order to proceed forward!"
exit 5
}
}
}

Expand Down

0 comments on commit 85616de

Please sign in to comment.