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

Write installed package name into marker file

parent e5c0ddd6
No related branches found
No related tags found
No related merge requests found
...@@ -450,6 +450,7 @@ function Update-ServiceBinaries { ...@@ -450,6 +450,7 @@ function Update-ServiceBinaries {
$MarkerFile = "$($UpdPathMarkerFiles)\$($env:COMPUTERNAME)" $MarkerFile = "$($UpdPathMarkerFiles)\$($env:COMPUTERNAME)"
try { try {
New-Item -Type File "$MarkerFile" | Out-Null New-Item -Type File "$MarkerFile" | Out-Null
Write-Output "Installed package: $($UpdPackage)" | Out-File $MarkerFile
Log-Debug "Created marker file [$($MarkerFile)]." Log-Debug "Created marker file [$($MarkerFile)]."
} }
catch { catch {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment