Skip to content

Commit

Permalink
Update LizardByte/homebrew-release-action to 67dab0bd79face1721c8b330…
Browse files Browse the repository at this point in the history
…c9fa770b2976eb12
  • Loading branch information
LizardByte-bot committed Sep 21, 2024
1 parent bcf1b5a commit 3e5dd9f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Formula/h/hello_world.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
class HelloWorld < Formula
desc "Simple program that outputs 'Hello, World!'"
homepage "https://app.lizardbyte.dev"
url "https://github.com/LizardByte/homebrew-release-action.git"
version "0.0.1"

def install
# create hello world sh file with echo command
(buildpath/"hello-world").write <<~EOS
#!/bin/sh
echo "Hello, World!"
EOS

# install the hello-world file to the bin directory
bin.install "hello-world"
end

test do
system "#{bin}/hello-world"
end
end
# Created from LizardByte/homebrew-release-action@67dab0bd79face1721c8b330c9fa770b2976eb12

0 comments on commit 3e5dd9f

Please sign in to comment.