You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return$installPath# Return the path where Rubberduck.dll was found
215
217
}
216
218
217
-
$rubberduckInstalled=Test-RubberduckInstalled
218
-
if (-not$rubberduckInstalled) {
219
+
$rubberduckInstallPath=Test-RubberduckInstalled
220
+
if (-not$rubberduckInstallPath) {
219
221
Write-Host"⚠️ Warning: Rubberduck installation could not be verified. Office addins may not function correctly."
220
222
Write-Host"Please check the installation log for more details or try reinstalling manually."
221
223
@@ -230,14 +232,13 @@ if (-not $rubberduckInstalled) {
230
232
231
233
# Now we need to download the artifacts from the latest build in https://github.com/DecimalTurn/Rubberduck/actions/runs/14609505761/artifacts/2990874874
232
234
# The artifacts are stored in a zip file and we need to extract them to the installation folder.
233
-
# The installation folder is usually located in the following path: C:\ProgramData\Rubberduck\
234
235
235
236
Write-Host"⏳ Downloading and installing additional components..."
0 commit comments