mirror of https://github.com/bitwarden/cli.git
1 changed files with 13 additions and 0 deletions
@ -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…
Reference in new issue