Skip to content

Commit 925ce1a

Browse files
committed
Fix paths
1 parent ed0f517 commit 925ce1a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/Install-Rubberduck-VBA.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ if (-not $rubberduckInstallPath) {
233233
Write-Host "⏳ Downloading and installing CLI-Friendly DLL components..."
234234

235235
# Define the artifact URL and download location
236-
$artifactUrl = "https://github.com/DecimalTurn/Rubberduck/actions/runs/14609505761/artifacts/2990874874"
236+
$artifactUrl = "https://github.com/DecimalTurn/Rubberduck/releases/download/v2.5.92.6373-CLI-Friendly/rubberduck-v2.5.92.6373-CLI-Friendly.zip"
237237
$artifactZipPath = "$env:TEMP\RubberduckArtifacts.zip"
238238
$rubberduckInstallDir = $rubberduckInstallPath # Use the path returned by Test-RubberduckInstalled
239239

scripts/Tests-Rubberduck-VBA.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Test-WithRubberduck {
2424

2525
# Run all tests in the active VBA project
2626
$logPath = "$env:temp\RubberduckTestLog.txt"
27-
$rubberduck.RunAllTests($logPath)
27+
$rubberduck.RunAllTestsAndGetResults($logPath)
2828
Write-Host "All tests executed successfully."
2929

3030
# Wait for tests to complete (optional: add a timeout)

0 commit comments

Comments
 (0)