Skip to content

Commit 845795f

Browse files
authored
fix(ci): run uru admin install from uru directory (#156)
1 parent 8f337e4 commit 845795f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/integration-test-migrate-ruby-windows-uru.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,11 @@ jobs:
7171
# Also add to current PATH (GITHUB_PATH only affects subsequent steps)
7272
$env:Path = "$uruDir;$env:Path"
7373
74-
# Initialize uru
74+
# Initialize uru (must run from same directory as uru_rt.exe)
7575
Write-Host "Installing uru..."
76-
uru_rt.exe admin install
76+
Push-Location $uruDir
77+
.\uru_rt.exe admin install
78+
Pop-Location
7779
7880
Write-Host "uru installed successfully"
7981

0 commit comments

Comments
 (0)