[arch-commits] Commit in container-diff/trunk (PKGBUILD)
Santiago Torres-Arias
sangy at archlinux.org
Sun Oct 6 17:08:33 UTC 2019
Date: Sunday, October 6, 2019 @ 17:08:33
Author: sangy
Revision: 513623
PKGBUILD: fix unquoted $GOPATHs
Modified:
container-diff/trunk/PKGBUILD
----------+
PKGBUILD | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2019-10-06 17:06:24 UTC (rev 513622)
+++ PKGBUILD 2019-10-06 17:08:33 UTC (rev 513623)
@@ -1,5 +1,5 @@
+# Maintainer: Santiago Torres-Arias <santiago at archlinux dot org>
# Maintainer: Daniel Milde <daniel at milde dot cz>
-# Co-maintainer: Santiago Torres-Arias <santiago at archlinux dor org>
pkgname=container-diff
pkgver=0.15.0
@@ -21,7 +21,7 @@
build() {
cd "${srcdir}/src/github.com/GoogleContainerTools/${pkgname}"
- export GOPATH=${srcdir}
+ export GOPATH="${srcdir}"
make clean && make
}
@@ -30,7 +30,7 @@
#FIXME: we also need to instantiate our custom docker daemon
# (if you want to build on a chroot), which is rather tricky...
cd "${srcdir}/src/github.com/GoogleContainerTools/${pkgname}"
- export GOPATH=${srcdir}
+ export GOPATH="${srcdir}"
make test integration -j | true
}
More information about the arch-commits
mailing list