We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc85e44 commit 1cb44ceCopy full SHA for 1cb44ce
.github/workflows/bundle-build.yml
@@ -73,9 +73,11 @@ jobs:
73
run: |
74
$installer = Get-ChildItem -Path installers -Recurse -Filter 'stellarium-*-qt6-win64.exe' | Select-Object -First 1
75
if ($installer) {
76
- & $installer.FullName /silent /dir=stellarium-installation /CURRENTUSER /NOICONS
+ & $installer.FullName /silent /dir=stellarium-installation /CURRENTUSER /NOICONS /LOG="installation.log" /MERGETASKS="!checkexisting"
77
New-Item -ItemType Directory -Path stellarium-installer -Force | Out-Null
78
Copy-Item $installer.FullName stellarium-installer\
79
+ Write-Host "===== installation.log ====="
80
+ Get-Content installation.log
81
} else {
82
Write-Error "Installer not found."
83
}
0 commit comments