Closed maturanomx closed 2 years ago
Ping @thundron.
I have just noticed that this Cask has the same sha256
for each arch
:
cask "postman-cli" do
arch arm: "arm64", intel: "x64"
version "1.0.2"
sha256 arm: "a8b49fda050bf6fe99f886807474aa60c7c55e9e743972b6f0a221bd6849f84e",
intel: "a8b49fda050bf6fe99f886807474aa60c7c55e9e743972b6f0a221bd6849f84e"
url "https://dl-cli.pstmn.io/download/postman-cli-cli-#{version}-macos-#{arch}.zip",
verified: "dl-cli.pstmn.io/download/"
name "Postman CLI"
desc "CLI for command-line API management on Postman"
homepage "https://www.postman.com/downloads/"
livecheck do
url "https://dl-cli.pstmn.io/api/version/latest"
strategy :page_match do |page|
JSON.parse(page)["version"]
end
end
auto_updates true
binary "postman-cli", target: "postman"
zap trash: "~/.postman"
end
correct: that version had an issue with arm64 binaries. we're working on a fix
Looking at the script in the install instructions.
PREFIX='/usr/local'
# We don't support Apple Silicon native builds yet
URL='https://dl-cli.pstmn.io/download/latest/osx_64'
Verification
--force
.brew update-reset && brew update
and retried my command.brew doctor
, fixed as many issues as possible and retried my command.Description of issue
brew install postman-cli
is installing the wrong CPU type version.Command that failed
brew install postman-cli
Output of command with
--verbose --debug
Output of
brew doctor --verbose
Output of
brew tap