mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
14 lines
299 B
PowerShell
14 lines
299 B
PowerShell
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
|