Skip to content

Commit a9c5d88

Browse files
committed
Remove --local flag
1 parent e979b0b commit a9c5d88

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
$gemToInstall = "./tiny_tds-$gemVersion-$rubyArchitecture.gem"
8383
8484
Write-Host "Looking to install $gemToInstall"
85-
gem install --local "$gemToInstall"
85+
gem install "$gemToInstall"
8686
8787
- name: Test if TinyTDS loads
8888
shell: pwsh
@@ -203,7 +203,7 @@ jobs:
203203
$gemToInstall = "./tiny_tds-$gemVersion-$rubyArchitecture.gem"
204204
205205
Write-Host "Looking to install $gemToInstall"
206-
gem install --local "$gemToInstall"
206+
gem install "$gemToInstall"
207207
208208
- name: Test if TinyTDS loads
209209
shell: pwsh
@@ -319,7 +319,7 @@ jobs:
319319
shell: pwsh
320320
run: |
321321
$gemVersion = (Get-Content VERSION).Trim()
322-
gem install --local "tiny_tds-$gemVersion.gem"
322+
gem install "tiny_tds-$gemVersion.gem"
323323
324324
- name: Test if TinyTDS loads
325325
shell: pwsh
@@ -458,7 +458,7 @@ jobs:
458458
shell: bash
459459
run: |
460460
gemVersion=$(<VERSION tr -d '[:space:]')
461-
gem install --local "tiny_tds-$gemVersion.gem"
461+
gem install "tiny_tds-$gemVersion.gem"
462462
463463
- name: Test if TinyTDS loads
464464
shell: bash

0 commit comments

Comments
 (0)