This time comment out ALL the RVM commands to fix the build

This commit is contained in:
Cassandra Targett 2020-08-07 13:35:37 -05:00
parent abf637fc88
commit fb9110ad18
1 changed files with 4 additions and 4 deletions

View File

@ -53,10 +53,10 @@ function echoRun() {
# echoRun "source $RVM_PATH/scripts/rvm" # Load RVM into a shell session *as a Bash function*
# echoRun "rvm cleanup all" # Remove old stuff
echoRun "rvm autolibs disable" # Enable single-user mode
echoRun "rvm install $RUBY_VERSION" # Install Ruby
echoRun "rvm gemset create $GEMSET" # Create this project's gemset
echoRun "rvm $RUBY_VERSION@$GEMSET" # Activate this project's gemset
# echoRun "rvm autolibs disable" # Enable single-user mode
# echoRun "rvm install $RUBY_VERSION" # Install Ruby
# echoRun "rvm gemset create $GEMSET" # Create this project's gemset
# echoRun "rvm $RUBY_VERSION@$GEMSET" # Activate this project's gemset
# Install gems in the gemset. Param --force disables dependency conflict detection.
echoRun "gem install --force --version 3.5.0 jekyll"