diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2023-03-29 02:05:17 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-29 02:05:17 +0300 |
commit | 1118b992d970b53d92b3379a5b05de7738f3dc8b (patch) | |
tree | 6015c18da0e775338d81ee977c4896b8f1d117b4 /src/ruby/install.sh | |
parent | 0e079baaf7c67c7df9521d1dd5059a293702c5d5 (diff) |
Ruby: Fix failures - omit "ruby-debug-ide" (#505)feature_ruby_1.0.10
* Ruby: Fix failures on debian image due to ruby-debug-ide
* omit
Diffstat (limited to 'src/ruby/install.sh')
-rwxr-xr-x | src/ruby/install.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ruby/install.sh b/src/ruby/install.sh index daae7fa..0871085 100755 --- a/src/ruby/install.sh +++ b/src/ruby/install.sh @@ -19,7 +19,8 @@ ADDITIONAL_VERSIONS="${ADDITIONALVERSIONS:-""}" # Note: ruby-debug-ide will install the right version of debase if missing and # installing debase directly fails on Ruby 3.1.0 as of 1/7/2022, so omitting. -DEFAULT_GEMS="rake ruby-debug-ide" +# installing ruby-debug-ide on debian fails, so omitting. +DEFAULT_GEMS="rake" RVM_GPG_KEYS="409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB" GPG_KEY_SERVERS="keyserver hkp://keyserver.ubuntu.com |