summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaleb Maclennan2019-03-12 15:37:55 +0300
committerCaleb Maclennan2019-03-12 15:43:37 +0300
commit50ad846a8b645de548ad8aff9b798a1e43f169fb (patch)
treea8a2b3ff187dec2c906c4d813004818ad815ff29
parent4d658e52c226db4945d60013703297711bb16dc1 (diff)
downloadaur-50ad846a8b645de548ad8aff9b798a1e43f169fb.tar.gz
Cleanup bash shell quoting using shellharden
-rw-r--r--PKGBUILD6
1 files changed, 3 insertions, 3 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 47fd1c3bb957..5e9bb73bee8b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
# Contributor: Simon Reiser <simonfxr@gmail.com>
_pkgname=lab
-pkgname=${_pkgname}-git
+pkgname=$_pkgname-git
pkgver=0.15.2.r1.gb2da778
_branch=master
pkgrel=1
@@ -15,8 +15,8 @@ license=('custom:Unlicense')
depends=('git')
optdepends=('hub')
makedepends=('git' 'go')
-conflicts=("$_pkgname" "${_pkgname}-bin")
-source=("git://github.com/zaquestion/${_pkgname}.git#branch=$_branch")
+conflicts=("$_pkgname" "$_pkgname-bin")
+source=("git://github.com/zaquestion/$_pkgname.git#branch=$_branch")
sha512sums=('SKIP')
_gourl="github.com/zaquestion/$_pkgname"