which rake does not work on Windows on Ruby 2.5+

This commit is contained in:
Benoit Daloze
2022-08-23 20:43:55 +02:00
parent ae403e8ff4
commit 0a29871fe2
+5 -2
View File
@@ -115,9 +115,12 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/gem_from_github.gemfile
- name: which ruby, rake, bundle
- name: which ruby, bundle
shell: bash
run: which -a ruby rake bundle
run: which -a ruby bundle
- name: which rake
run: which -a rake
if: "!startsWith(matrix.os, 'windows')"
- name: where ruby, rake, bundle
if: startsWith(matrix.os, 'windows')
run: |