Skip to content

Commit

Permalink
chore: install bundler without sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
kimar committed Apr 29, 2022
1 parent 23eeaab commit b6c944d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/setup.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Install Ruby Bundler
sudo gem install bundler:2.3.11
gem install bundler:2.3.11

# Install Ruby Gems
bundle install
Expand Down
4 changes: 2 additions & 2 deletions Documentation/Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The app use [CocoaPods]() and [CocoaPods-Keys](https://github.com/orta/cocoapods
#### Intel Mac

```zsh
sudo gem install bundler
gem install bundler
bundle install
```

Expand All @@ -41,7 +41,7 @@ rbenv global 3.0.3
ruby --version
# > ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [arm64-darwin21]

sudo gem install bundler
gem install bundler
bundle install
```

Expand Down

0 comments on commit b6c944d

Please sign in to comment.