Browse Source

brew update script

pull/19/head
Kyle Spearrin 8 years ago
parent
commit
f9527383da
  1. 13
      scripts/brew-update.ps1

13
scripts/brew-update.ps1

@ -0,0 +1,13 @@ @@ -0,0 +1,13 @@
param (
[Parameter(Mandatory=$true)]
[string] $version
)
# Dependencies:
# 1. brew cask install powershell
#
# To run:
# pwsh ./brew-update.ps1 -version 1.1.0
$url = 'https://registry.npmjs.org/@bitwarden/cli/-/cli-' + $version + '.tgz';
brew bump-formula-pr --url $url bitwarden-cli
Loading…
Cancel
Save