From 8a1ee9070c2b9c0023c1f069bc7fe77d6f3cdc8c Mon Sep 17 00:00:00 2001 From: Hare Sudhan Date: Mon, 5 Feb 2024 18:46:17 -0500 Subject: [PATCH] Revert "fix linting issues" This reverts commit 6ad8c7b7e51e6466c8c8cc053a6369dcab8763e6. --- Public/Invoke-KickoffAtomicRunner.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Public/Invoke-KickoffAtomicRunner.ps1 b/Public/Invoke-KickoffAtomicRunner.ps1 index 54c87cb..d16d1a5 100644 --- a/Public/Invoke-KickoffAtomicRunner.ps1 +++ b/Public/Invoke-KickoffAtomicRunner.ps1 @@ -1,4 +1,4 @@ -function Invoke-KickoffAtomicRunner { +function Invoke-KickoffAtomicRunner { #log rotation function function Rotate-Log { @@ -26,9 +26,9 @@ #Create log files as needed $all_log_file = Join-Path $artConfig.atomicLogsPath "all-out-$($artConfig.basehostname).txt" $all_log_file_cleanup = Join-Path $artConfig.atomicLogsPath "all-out-$($artConfig.basehostname)-cleanup.txt" - New-Item $all_log_file -ItemType file -ErrorAction Ignore - New-Item $all_log_file_cleanup -ItemType file -ErrorAction Ignore - New-Item $artConfig.logFile -ItemType File -ErrorAction Ignore + New-Item $all_log_file -ItemType file -ErrorAction Ignore + New-Item $all_log_file_cleanup -ItemType file -ErrorAction Ignore + New-Item $artConfig.logFile -ItemType File -ErrorAction Ignore #Rotate logs based on FileSize and Date max_filesize $max_filesize = 200 #in MB