Skip to content

Commit df87490

Browse files
OughtPutshsbt
authored andcommitted
Correct bundle path in getting started documentation
1 parent 3e3addb commit df87490

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

doc/GETTING_STARTED.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To run RubyGems commands like `gem install` from your local copy:
3131

3232
To run Bundler commands like `bundle install` from your local copy:
3333

34-
bundler/bin/bundle install
34+
bin/bundle install
3535

3636
## Running Tests
3737

@@ -101,7 +101,7 @@ Set up a shell alias to run Bundler from your clone for convenience.
101101

102102
Add this to your `~/.bashrc` or `~/.bash_profile`:
103103

104-
alias dbundle='ruby /[repo root]/bundler/bin/bundle'
104+
alias dbundle='ruby /[repo root]/bin/bundle'
105105

106106
See [this tutorial](https://www.moncefbelyamani.com/create-aliases-in-bash-profile-to-assign-shortcuts-for-common-terminal-commands/) for adding aliases to your `~/.bashrc` profile.
107107

@@ -113,7 +113,7 @@ Add this to your [PowerShell profile](https://learn.microsoft.com/en-us/powershe
113113
$Env:RUBYOPT="-rdebug"
114114
function dbundle
115115
{
116-
& "ruby.exe" E:\[repo root]\bundler\bin\bundle $args
116+
& "ruby.exe" E:\[repo root]\bin\bundle $args
117117
}
118118
```
119119

0 commit comments

Comments
 (0)