Browse Source

Fix rvm.sh

While I was investigating why most Ruby related framework are broken,
I notice that one problem at 'rvm.sh'. It does not solve current problem,
but it seems that RETCODE variable would have nonexisting value, so I change
it to have right value.
blee-techempower 9 years ago
parent
commit
f0f96bc59d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolset/setup/linux/languages/rvm.sh

+ 1 - 1
toolset/setup/linux/languages/rvm.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 #!/bin/bash
 
 
-RETCODE=$(fw_exists rvm.installed)
+RETCODE=$(fw_exists ${IROOT}/rvm.installed)
 [ ! "$RETCODE" == 0 ] || { \
 [ ! "$RETCODE" == 0 ] || { \
   # Assume single-user installation
   # Assume single-user installation
   source $IROOT/rvm.installed
   source $IROOT/rvm.installed