File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 82
82
$gemToInstall = "./tiny_tds-$gemVersion-$rubyArchitecture.gem"
83
83
84
84
Write-Host "Looking to install $gemToInstall"
85
- gem install --local "$gemToInstall"
85
+ gem install "$gemToInstall"
86
86
87
87
- name : Test if TinyTDS loads
88
88
shell : pwsh
@@ -203,7 +203,7 @@ jobs:
203
203
$gemToInstall = "./tiny_tds-$gemVersion-$rubyArchitecture.gem"
204
204
205
205
Write-Host "Looking to install $gemToInstall"
206
- gem install --local "$gemToInstall"
206
+ gem install "$gemToInstall"
207
207
208
208
- name : Test if TinyTDS loads
209
209
shell : pwsh
@@ -319,7 +319,7 @@ jobs:
319
319
shell : pwsh
320
320
run : |
321
321
$gemVersion = (Get-Content VERSION).Trim()
322
- gem install --local "tiny_tds-$gemVersion.gem"
322
+ gem install "tiny_tds-$gemVersion.gem"
323
323
324
324
- name : Test if TinyTDS loads
325
325
shell : pwsh
@@ -458,7 +458,7 @@ jobs:
458
458
shell : bash
459
459
run : |
460
460
gemVersion=$(<VERSION tr -d '[:space:]')
461
- gem install --local "tiny_tds-$gemVersion.gem"
461
+ gem install "tiny_tds-$gemVersion.gem"
462
462
463
463
- name : Test if TinyTDS loads
464
464
shell : bash
You can’t perform that action at this time.
0 commit comments