mirror of https://github.com/bitwarden/cli.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
318 B
12 lines
318 B
# Dependencies: |
|
# 1. Install powershell, ex `sudo apt-get install -y powershell` |
|
# |
|
# To run: |
|
# pwsh ./snap-update.ps1 |
|
|
|
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path; |
|
$rootDir = $dir + "/.."; |
|
$distDir = $rootDir + "/dist"; |
|
$distSnap = $distDir + "/snap/bw*.snap"; |
|
|
|
snapcraft push $distSnap --release stable
|
|
|