From 86ffa9f37c19f63f11335f75ba4f884dc870e1a4 Mon Sep 17 00:00:00 2001 From: caseysmithrc <30840394+caseysmithrc@users.noreply.github.com> Date: Thu, 6 Sep 2018 12:18:17 -0600 Subject: [PATCH] Fix All The Things --- .../Invoke-AtomicRedTeam/Invoke-AtomicRedTeam.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execution-frameworks/Invoke-AtomicRedTeam/Invoke-AtomicRedTeam.ps1 b/execution-frameworks/Invoke-AtomicRedTeam/Invoke-AtomicRedTeam.ps1 index 27964aed..0f14d60e 100644 --- a/execution-frameworks/Invoke-AtomicRedTeam/Invoke-AtomicRedTeam.ps1 +++ b/execution-frameworks/Invoke-AtomicRedTeam/Invoke-AtomicRedTeam.ps1 @@ -47,7 +47,7 @@ function Confirm-Dependencies { switch ($Result) { 0 { Install-Module -Name powershell-yaml } - 1 { Write-Host "Atomic Red Team Requires PowerShell-Yaml Exiting" } + 1 { Write-Host "Atomic Red Team Requires PowerShell-Yaml Exiting"; exit} } } }