Updated the cd-*.ps1 scripts

This commit is contained in:
Markus Fleschutz
2024-10-30 13:19:56 +01:00
parent 6419712ff2
commit bb01ef8cf5
25 changed files with 117 additions and 117 deletions

View File

@ -19,11 +19,11 @@ function GetLogsDir {
}
try {
$Path = GetLogsDir
Set-Location "$Path"
"📂$Path"
$path = GetLogsDir
Set-Location "$path"
"📂$path"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}
}