Skip to content

Commit 1d62641

Browse files
authored
Merge pull request #224507 from floitsch/fix-toit-typo
jaguar: fix typo
2 parents b7368a6 + b6c50a1 commit 1d62641

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

Formula/j/jaguar.rb

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ class Jaguar < Formula
1212
end
1313

1414
bottle do
15-
sha256 cellar: :any_skip_relocation, arm64_sequoia: "963d22d8a13fae117c811c0ca722640d4a2b3d3bbd47dba0029fe1d2f7291404"
16-
sha256 cellar: :any_skip_relocation, arm64_sonoma: "963d22d8a13fae117c811c0ca722640d4a2b3d3bbd47dba0029fe1d2f7291404"
17-
sha256 cellar: :any_skip_relocation, arm64_ventura: "963d22d8a13fae117c811c0ca722640d4a2b3d3bbd47dba0029fe1d2f7291404"
18-
sha256 cellar: :any_skip_relocation, sonoma: "88a4001106d27e68ae85e818910ad7c269fb4211d43f2e2be41143f785b77eec"
19-
sha256 cellar: :any_skip_relocation, ventura: "88a4001106d27e68ae85e818910ad7c269fb4211d43f2e2be41143f785b77eec"
20-
sha256 cellar: :any_skip_relocation, x86_64_linux: "d13bc01462df5a7e34f7390b3d86b4ef2ee0b121687a9c2b1a7459c985277e42"
15+
rebuild 1
16+
sha256 cellar: :any_skip_relocation, arm64_sequoia: "6c340eac3084e3d54a844d3fe29d3175dab1a032b615ff8af5597d5b7dff4c07"
17+
sha256 cellar: :any_skip_relocation, arm64_sonoma: "6c340eac3084e3d54a844d3fe29d3175dab1a032b615ff8af5597d5b7dff4c07"
18+
sha256 cellar: :any_skip_relocation, arm64_ventura: "6c340eac3084e3d54a844d3fe29d3175dab1a032b615ff8af5597d5b7dff4c07"
19+
sha256 cellar: :any_skip_relocation, sonoma: "94057dc9e7df850da8a2be71003dd961450689a96203df2a54da1706932cca82"
20+
sha256 cellar: :any_skip_relocation, ventura: "94057dc9e7df850da8a2be71003dd961450689a96203df2a54da1706932cca82"
21+
sha256 cellar: :any_skip_relocation, x86_64_linux: "cfcfcf56cadcd6768b72f87ca9ce270ed41a07f95adf11c8cbe553d817754aef"
2122
end
2223

2324
depends_on "go" => :build
@@ -36,12 +37,12 @@ def install
3637
test do
3738
assert_match "Version:\t v#{version}", shell_output(bin/"jag --no-analytics version 2>&1")
3839

39-
(testpath/"hello.toil").write <<~TOIL
40+
(testpath/"hello.toit").write <<~TOIT
4041
main:
4142
print "Hello, world!"
42-
TOIL
43+
TOIT
4344

4445
# Cannot do anything without installing SDK to $HOME/.cache/jaguar/
45-
assert_match "You must setup the SDK", shell_output(bin/"jag run #{testpath}/hello.toil 2>&1", 1)
46+
assert_match "You must setup the SDK", shell_output(bin/"jag run #{testpath}/hello.toit 2>&1", 1)
4647
end
4748
end

0 commit comments

Comments
 (0)