From 892dfbb6d0297b9b5e4df4d05e1a9c11cbaef26f Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Wed, 16 Sep 2020 15:07:17 +0200 Subject: [PATCH] make options-import error stand out a bit more --- Makefile.coq.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.coq.local b/Makefile.coq.local index 2f940e8cc..9ff769d27 100644 --- a/Makefile.coq.local +++ b/Makefile.coq.local @@ -14,7 +14,7 @@ NORMALIZER:=test-normalizer.sed test: $(TESTFILES:.v=.vo) # Make sure everything imports the options. $(HIDE)for FILE in $(VFILES); do \ - if ! fgrep -q 'From iris Require Import options.' "$$FILE"; then echo "ERROR: $$FILE does not import 'options'."; exit 1; fi \ + if ! fgrep -q 'From iris Require Import options.' "$$FILE"; then echo "ERROR: $$FILE does not import 'options'."; echo; exit 1; fi \ done .PHONY: test -- GitLab