Skip to content

Commit e52d8bb

Browse files
committed
fix(ci): replace removed bundle --with flag
Bundler removed --with; it now fails every install step. Use 'bundle config set --local with jsexec' before bundle install.
1 parent 74f5692 commit e52d8bb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/rake.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
working-directory: ruby
4040
run: |
4141
pip install regex
42-
bundle install --with=jsexec
42+
bundle config set --local with jsexec
43+
bundle install
4344
4445
- name: RSpec
4546
working-directory: ruby

0 commit comments

Comments
 (0)