Skip to content

Commit

Permalink
Release 5.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-dx committed Nov 17, 2022
1 parent 9e2f072 commit 678d716
Show file tree
Hide file tree
Showing 2 changed files with 24 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.2.1/twilio-v5.2.1.tar.gz"
version "5.2.1"
sha256 "9cfc9a067adaaebbf6eb3a9beb696771173934499f19b9741181223adfdfb7ce"
url "https://twilio-cli-prod.s3.amazonaws.com/twilio-v5.2.2/twilio-v5.2.2.tar.gz"
version "5.2.2"
sha256 "d8e0953bc174f66989f35979b60d64d2f411317f7dae9db361b406e6a0f7d85d"
depends_on "node"

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

class TwilioAT521 < 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.2.1/twilio-v5.2.1.tar.gz"
version "5.2.1"
sha256 "9cfc9a067adaaebbf6eb3a9beb696771173934499f19b9741181223adfdfb7ce"
depends_on "node"

def install
inreplace "bin/twilio", /^CLIENT_HOME=/, "export TWILIO_OCLIF_CLIENT_HOME=#{lib/"client"}\nCLIENT_HOME="
libexec.install Dir["*"]
bin.install_symlink libexec/"bin/twilio"
end

def post_install
pid = spawn("node #{libexec}/welcome.js")
Process.wait pid
end
end

0 comments on commit 678d716

Please sign in to comment.