Skip to content
Snippets Groups Projects
Commit b2c3adce authored by Ralf Jung's avatar Ralf Jung
Browse files

avoid deprecated fgrep

parent a7ca8d5d
No related branches found
No related tags found
No related merge requests found
Pipeline #83560 failed
...@@ -5,6 +5,6 @@ style: $(VFILES) ...@@ -5,6 +5,6 @@ style: $(VFILES)
# Make sure everything imports the options. # Make sure everything imports the options.
$(SHOW)"COQLINT" $(SHOW)"COQLINT"
$(HIDE)for FILE in $(VFILES); do \ $(HIDE)for FILE in $(VFILES); do \
if ! fgrep -q 'From iris.prelude Require Import options.' "$$FILE"; then echo "ERROR: $$FILE does not import 'options'."; echo; exit 1; fi ; \ if ! grep -F -q 'From iris.prelude Require Import options.' "$$FILE"; then echo "ERROR: $$FILE does not import 'options'."; echo; exit 1; fi ; \
done done
.PHONY: style .PHONY: style
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment