diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-09-04 08:46:22 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-09-04 08:46:22 +0000 |
commit | 303c5a370ed1bea8a3045b33f9c03e992badb9b0 (patch) | |
tree | f1b0ab516a8cdb831af99fff1e3101bd77a37eef /doc | |
parent | 2d1b2f0ecf11a61b2f1f95377e81b661870bf847 (diff) | |
download | ruby-303c5a370ed1bea8a3045b33f9c03e992badb9b0.tar.gz |
* doc/contributing.rdoc: fix configuration option.
[ci skip] [fix GH-1009]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r-- | doc/contributing.rdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/contributing.rdoc b/doc/contributing.rdoc index 46322ba0f0..7be8cc2275 100644 --- a/doc/contributing.rdoc +++ b/doc/contributing.rdoc @@ -312,7 +312,7 @@ Now let's build CRuby: autoconf mkdir build && cd build # its good practice to build outside of source dir mkdir ~/.rubies # we will install to .rubies/ruby-trunk in our home dir - ../configure --prefix="$HOME/.rubies/ruby-trunk" + ../configure --prefix="${HOME}/.rubies/ruby-trunk" make && make install After adding Ruby to your PATH, you should be ready to run the test suite: |