Skip to content

Commit

Permalink
Remove --local flag
Browse files Browse the repository at this point in the history
  • Loading branch information
andyundso committed Jul 17, 2024
1 parent b777231 commit 89aa640
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
$gemToInstall = "./tiny_tds-$gemVersion-$rubyArchitecture.gem"
Write-Host "Looking to install $gemToInstall"
gem install --local "$gemToInstall"
gem install "$gemToInstall"
- name: Test if TinyTDS loads
shell: pwsh
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
$gemToInstall = "./tiny_tds-$gemVersion-$rubyArchitecture.gem"
Write-Host "Looking to install $gemToInstall"
gem install --local "$gemToInstall"
gem install "$gemToInstall"
- name: Test if TinyTDS loads
shell: pwsh
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
shell: pwsh
run: |
$gemVersion = (Get-Content VERSION).Trim()
gem install --local "tiny_tds-$gemVersion.gem"
gem install "tiny_tds-$gemVersion.gem"
- name: Test if TinyTDS loads
shell: pwsh
Expand Down Expand Up @@ -458,7 +458,7 @@ jobs:
shell: bash
run: |
gemVersion=$(<VERSION tr -d '[:space:]')
gem install --local "tiny_tds-$gemVersion.gem"
gem install "tiny_tds-$gemVersion.gem"
- name: Test if TinyTDS loads
shell: bash
Expand Down

0 comments on commit 89aa640

Please sign in to comment.