summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Schwartz2016-02-05 14:19:03 -0500
committerEli Schwartz2016-02-05 14:19:03 -0500
commit57fb5b55050e2b138d1a5942eddf492bca8db0c4 (patch)
tree2d36edd8590e70ce0d042b980e57f4c22feb35ba
parent7f53674577cc025149540ac4e057ff02815bef0d (diff)
downloadaur-57fb5b55050e2b138d1a5942eddf492bca8db0c4.tar.gz
git-extras: Fix mistake that prevented package from building
In commit: d021b4362a85265aa9ea344b7a949aeaeea85ec3 source=() turned from an array into a string I didn't notice when I adopted the package... pacman 5 checks for that, and this became an error.
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 28ba231aa267..24af6b132c76 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@ arch=(any)
url="https://github.com/tj/git-extras"
license=('custom:MIT')
depends=('git')
-source="https://github.com/tj/${pkgname}/archive/${pkgver}.tar.gz"
+source=("https://github.com/tj/${pkgname}/archive/${pkgver}.tar.gz")
sha256sums=('d4c028e2fe78abde8f3e640b70f431318fb28d82894dde22772efe8ba3563f85')
package() {