summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSean Anderson2018-04-07 01:33:00 -0400
committerSean Anderson2018-04-07 01:33:36 -0400
commit4e87b8bbc554e6162eebf93b3aaa0dad3870eb00 (patch)
tree8e5a936fd060d95d1d43c08c7e39316db714b9de
parentd7ee13186d7b6752056d691f643541a2cdbae9b6 (diff)
downloadaur-4e87b8bbc554e6162eebf93b3aaa0dad3870eb00.tar.gz
Allow the build to fail
We should also fail if make all fails
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 51f369c4a28a..028be91da14b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -19,7 +19,7 @@ sha512sums=('5ef0172927106589620678897f12f054533503a5cf13df71bf4deda43f223d0cd6a
build() {
cd "$srcdir/camlzip-$pkgver"
- make all allopt || return 1
+ make all allopt
mkdir -p html
ocamldoc -html -d html gzip.mli zip.mli
}