Skip to content

Commit

Permalink
Release 5.22.9
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-dx committed Jan 13, 2025
1 parent e690091 commit e3efbf6
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Formula/twilio.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
class Twilio < Formula
desc "unleash the power of Twilio from your command prompt"
homepage "https://github.com/twilio/twilio-cli"
url "https://twilio-cli-prod.s3.amazonaws.com/twilio-v5.22.8/twilio-v5.22.8.tar.gz"
version "5.22.8"
sha256 "3e102565a84cf1516b4b2573f835cbeb42c9e61ffbd867a63f7b3b6e3b1e3ef3"
url "https://twilio-cli-prod.s3.amazonaws.com/twilio-v5.22.9/twilio-v5.22.9.tar.gz"
version "5.22.9"
sha256 "9df70cafb2b08885eb39fb5db7e57bb23230e4af95f102fe8288f57cc2b1ec2c"
depends_on "node@18"

def install
Expand Down
22 changes: 22 additions & 0 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
require "language/node"

class TwilioAT5228 < Formula
desc "unleash the power of Twilio from your command prompt"
homepage "https://github.com/twilio/twilio-cli"
url "https://twilio-cli-prod.s3.amazonaws.com/twilio-v5.22.8/twilio-v5.22.8.tar.gz"
version "5.22.8"
sha256 "3e102565a84cf1516b4b2573f835cbeb42c9e61ffbd867a63f7b3b6e3b1e3ef3"
depends_on "node@18"

def install
inreplace "bin/twilio", /^CLIENT_HOME=/, "export TWILIO_OCLIF_CLIENT_HOME=#{lib/"client"}\nCLIENT_HOME="
libexec.install Dir["*"]
(bin/"twilio").write_env_script libexec/"bin/twilio", PATH: "#{Formula["node@18"].opt_bin}:$PATH"
end

def post_install
node = Formula["node@18"].opt_bin/"node"
pid = spawn("#{node} #{libexec}/welcome.js")
Process.wait pid
end
end

0 comments on commit e3efbf6

Please sign in to comment.