Skip to content

Commit

Permalink
Fix BrokenPipeError: [Errno 32] Broken pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
pallxk committed Jan 7, 2020
1 parent 5dcb587 commit ca86bd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .SRCINFO
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pkgbase = azure-cli
pkgdesc = Command-line tools for Azure.
pkgver = 2.0.79
pkgrel = 1
pkgrel = 2
url = https://github.com/Azure/azure-cli
arch = any
license = MIT
Expand Down
4 changes: 2 additions & 2 deletions PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

pkgname=azure-cli
pkgver=2.0.79
pkgrel=1
pkgrel=2
pkgdesc="Command-line tools for Azure."
arch=('any')
url="https://github.com/Azure/azure-cli"
Expand All @@ -23,7 +23,7 @@ prepare() {
}

pkgver() {
"$srcdir/bin/az" --version | head -1 | tr -c -d 0-9.
"$srcdir/bin/az" --version 2> /dev/null | head -1 | tr -c -d 0-9.
}

package() {
Expand Down

0 comments on commit ca86bd7

Please sign in to comment.