Skip to content

Commit f257e96

Browse files
chrisseatonansalond
authored andcommitted
gu install -c org.graalvm.ruby is now gu install org.graalvm.ruby
(cherry picked from commit 5aaaa62)
1 parent bf0d5d0 commit f257e96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/user/installing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ This is done using the `gu` command. The Ruby package is the same for both
5454
editions of GraalVM and comes from GitHub.
5555

5656
```
57-
$ gu install -c org.graalvm.ruby
57+
$ gu install org.graalvm.ruby
5858
```
5959

6060
Or download manually from https://github.com/oracle/truffleruby/releases.

tool/jt.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1990,7 +1990,7 @@ def dockerfile(*args)
19901990
lines.push "RUN curl -OL https://github.com/oracle/graal/releases/download/vm-#{public_version}/graalvm-ce-#{public_version}-linux-amd64.tar.gz"
19911991
lines.push "RUN tar -zxf graalvm-ce-#{public_version}-linux-amd64.tar.gz"
19921992
lines.push "ENV GRAALVM_BASE=/test/graalvm-#{public_version}"
1993-
lines.push "RUN $GRAALVM_BASE/bin/gu install -c org.graalvm.ruby"
1993+
lines.push "RUN $GRAALVM_BASE/bin/gu install org.graalvm.ruby"
19941994
lines.push "ENV D_RUBY_BASE=$GRAALVM_BASE/jre/languages/ruby"
19951995
lines.push "ENV D_RUBY_BIN=$GRAALVM_BASE/bin"
19961996
when :graalvm

0 commit comments

Comments
 (0)