From 6d5998b11e88deb7105e577b33392edce4ef301d Mon Sep 17 00:00:00 2001 From: wildone Date: Wed, 2 Jun 2021 01:19:57 +1000 Subject: [PATCH] hide output of create logs path. --- scripts/functions.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/functions.ps1 b/scripts/functions.ps1 index c25a8dc..089d453 100644 --- a/scripts/functions.ps1 +++ b/scripts/functions.ps1 @@ -287,7 +287,7 @@ Function Main # ensure log path exist if(!(Test-Path -Path ${LOG_PATH} )){ - New-Item -ItemType directory -Path ${LOG_PATH} + New-Item -ItemType directory -Path ${LOG_PATH} | Out-Null } $script:LOG_PATH = (createDir $LOG_PATH)