aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-07-12 16:56:01 -0300
committerEuAndreh <eu@euandre.org>2021-07-12 16:56:01 -0300
commite8437c171112e90b94f4e593c821f83f66679161 (patch)
treee83a9fee3f93723c0f2029b13bb125d43c035d36 /Makefile
parentTODOs.md: Scratch (diff)
downloadpackage-repository-e8437c171112e90b94f4e593c821f83f66679161.tar.gz
package-repository-e8437c171112e90b94f4e593c821f83f66679161.tar.xz
Makefile: Fail early when Guix fails, put queue.scm at the beginning
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3b0bad7..9b87d65 100644
--- a/Makefile
+++ b/Makefile
@@ -2,14 +2,14 @@ NAME = package-repository
MAILING_LIST = public-inbox
guix-sources = \
+ src/xyz/euandreh/queue.scm \
src/xyz/euandreh/latest.scm \
src/xyz/euandreh/packages.scm \
src/xyz/euandreh/posix.scm \
- src/xyz/euandreh/queue.scm \
src/xyz/euandreh/pending.scm
all:
- for s in $(guix-sources); do guix build -Lsrc/ -K -f $$s; done
+ for s in $(guix-sources); do guix build -Lsrc/ -K -f $$s || exit 1; done
nix-shell --run ''
refresh: