add a .rvmrc_custom if you want to overide the one in the repo
This commit is contained in:
parent
286f1b876d
commit
6ee85bb626
2 changed files with 7 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -14,6 +14,7 @@ config/deploy_config.yml
|
||||||
.bundle
|
.bundle
|
||||||
vendor/bundle/*
|
vendor/bundle/*
|
||||||
config/database.yml
|
config/database.yml
|
||||||
|
.rvmrc_custom
|
||||||
|
|
||||||
# Generated files
|
# Generated files
|
||||||
log/*
|
log/*
|
||||||
|
|
|
||||||
7
.rvmrc
7
.rvmrc
|
|
@ -1 +1,6 @@
|
||||||
rvm ree-1.8.7-2011.03
|
#!/bin/bash
|
||||||
|
if [ -e '.rvmrc_custom' ]; then
|
||||||
|
source .rvmrc_custom;
|
||||||
|
else
|
||||||
|
rvm --create use ree@diaspora;
|
||||||
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue