Skip to content

Commit 57f562e

Browse files
author
Petr Chalupa
committed
Add missing bundle exec before rake commands in README
1 parent b87f738 commit 57f562e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -199,22 +199,22 @@ any platform. *Documentation is forthcoming...*
199199

200200
```
201201
*MRI only*
202-
rake build:native # Build concurrent-ruby-ext-<version>-<platform>.gem into the pkg directory
203-
rake compile:extension # Compile extension
202+
bundle exec rake build:native # Build concurrent-ruby-ext-<version>-<platform>.gem into the pkg dir
203+
bundle exec rake compile:extension # Compile extension
204204
205205
*JRuby only*
206-
rake build # Build JRuby-specific core gem (alias for `build:core`)
207-
rake build:core # Build concurrent-ruby-<version>-java.gem into the pkg directory
206+
bundle exec rake build # Build JRuby-specific core gem (alias for `build:core`)
207+
bundle exec rake build:core # Build concurrent-ruby-<version>-java.gem into the pkg directory
208208
209209
*All except JRuby*
210-
rake build # Build core and extension gems
211-
rake build:core # Build concurrent-ruby-<version>.gem into the pkg directory
212-
rake build:ext # Build concurrent-ruby-ext-<version>.gem into the pkg directory
210+
bundle exec rake build # Build core and extension gems
211+
bundle exec rake build:core # Build concurrent-ruby-<version>.gem into the pkg directory
212+
bundle exec rake build:ext # Build concurrent-ruby-ext-<version>.gem into the pkg directory
213213
214214
*All*
215-
rake clean # Remove any temporary products
216-
rake clobber # Remove any generated file
217-
rake compile # Compile all the extensions
215+
bundle exec rake clean # Remove any temporary products
216+
bundle exec rake clobber # Remove any generated file
217+
bundle exec rake compile # Compile all the extensions
218218
```
219219

220220
## Maintainers

0 commit comments

Comments
 (0)