Skip to content
Snippets Groups Projects
Commit 23c50068 authored by Niko Ehrenfeuchter's avatar Niko Ehrenfeuchter :keyboard:
Browse files

Continue if the status file could not be removed.

Important if it has already been removed before, otherwise the updater
would stop at this point.
parent 8fccc9ee
No related branches found
No related tags found
No related merge requests found
...@@ -431,7 +431,7 @@ function Update-ServiceBinaries { ...@@ -431,7 +431,7 @@ function Update-ServiceBinaries {
} }
Log-Debug "<ForceServiceCleanup> removing status file [$($StatusXml)]" Log-Debug "<ForceServiceCleanup> removing status file [$($StatusXml)]"
Remove-Item -Force $StatusXml Remove-Item -Force $StatusXml -ErrorAction Ignore
Return $True Return $True
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment