Skip to content

Commit

Permalink
Update LizardByte/homebrew-release-action to bee842eab68919f018b868bf…
Browse files Browse the repository at this point in the history
…dd8e606307c4a583
  • Loading branch information
LizardByte-bot committed Nov 15, 2024
1 parent bcf1b5a commit 1aa0fff
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@bee842eab68919f018b868bfdd8e606307c4a583

0 comments on commit 1aa0fff

Please sign in to comment.