mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
13 lines
185 B
Bash
Executable File
13 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
|
|
apt-get update
|
|
apt-get install -y curl
|
|
|
|
curl -sSL https://get.rvm.io | bash -s stable
|
|
source /etc/profile.d/rvm.sh
|
|
|
|
echo `rvm list known`
|
|
rvm install 2.6.1
|
|
|
|
echo `ruby -v`
|