Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
Revert "fix linting issues"

This reverts commit 6ad8c7b.

fix linting issues
  • Loading branch information
cyberbuff committed Feb 5, 2024
1 parent cc5b557 commit a7d8248
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Public/Invoke-KickoffAtomicRunner.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ function Invoke-KickoffAtomicRunner {
#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
Expand Down

0 comments on commit a7d8248

Please sign in to comment.