We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd3fafd commit 0957c32Copy full SHA for 0957c32
.devcontainer/codespaces/onCreateCommand.sh
@@ -1,7 +1,16 @@
1
-RUBY_VERSION=4.0.0
+# Workaround for install Ruby 4.0.0 with RVM
2
+rvm list
3
+curl -sSL https://rvm.io/mpapis.asc | gpg2 --import -
4
+curl -sSL https://rvm.io/pkuczynski.asc | gpg2 --import -
5
+rvm get master
6
+rvm list known
7
+
8
+# Install Ruby
9
rvm install 3.4.6
-rvm install $RUBY_VERSION
-rvm --default use $RUBY_VERSION
10
+rvm install 4.0.0
11
+rvm --default use 4.0.0
12
13
+ruby --version
14
15
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O /tmp/google-chrome.deb
16
sudo apt update && sudo apt install -y /tmp/google-chrome.deb && rm /tmp/google-chrome.deb
0 commit comments