mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
brew update script
This commit is contained in:
parent
56395ede45
commit
f9527383da
13
scripts/brew-update.ps1
Normal file
13
scripts/brew-update.ps1
Normal file
@ -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
Block a user