Skip to content

Commit 080fb04

Browse files
fix: Use bundler over bundle (#2500)
* Have gem install bundler and use it to do the installs.
1 parent 512bf2c commit 080fb04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: pages/docs/webdev.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ rbenv local 3.1.2
3737
This will run the Ruby you just built whenever you enter this directory. You'll want to install bundler too:
3838

3939
```bash
40-
gem install bundle
40+
gem install bundler
4141
```
4242

4343
(You may want to add `--user-install` here if you are not using rbenv. And if

Diff for: pixi.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
99
[tasks]
1010
# Need to use '--user-install' as using pixi instead of rbenv
1111
install = """
12-
gem install --user-install bundle && \
12+
gem install --user-install bundler && \
1313
bundle install
1414
"""
1515

0 commit comments

Comments
 (0)