Moved *_error.txt to logs

pull/245/head
KnifMelti 2022-12-12 02:18:08 +01:00
parent c49f6a084e
commit 4e2c2b5c33
2 changed files with 5 additions and 5 deletions

View File

@ -83,7 +83,7 @@ else {
}
#Test if there was a list_/winget_error
if (Test-Path "$WorkingDir\*_error.txt") {
if (Test-Path "$WorkingDir\logs\*_error.txt") {
$MessageType = "error"
}
else {

View File

@ -72,8 +72,8 @@ if (Test-Network) {
}
#Delete previous list_/winget_error (if they exist) if System
if (Test-Path "$WorkingDir\*_error.txt") {
Remove-Item "$WorkingDir\*_error.txt" -Force
if (Test-Path "$WorkingDir\logs\*_error.txt") {
Remove-Item "$WorkingDir\logs\*_error.txt" -Force
}
#Get External ListPath if System
@ -89,7 +89,7 @@ if (Test-Network) {
}
else {
Write-Log "Critical: List doesn't exist, exiting..." "Red"
New-Item "$WorkingDir\list_error.txt" -Force
New-Item "$WorkingDir\logs\list_error.txt" -Force
Exit 1
}
}
@ -135,7 +135,7 @@ if (Test-Network) {
if ($outdated -like "Problem:*") {
Write-Log "An error occured, exiting..." "red"
Write-Log "$outdated" "red"
New-Item "$WorkingDir\winget_error.txt" -Value "$outdated" -Force
New-Item "$WorkingDir\logs\winget_error.txt" -Value "$outdated" -Force
Exit 1
}