Skip to content
Snippets Groups Projects
Commit 7876d088 authored by Ben Gamari's avatar Ben Gamari
Browse files

linters: Fix check-version-number

This should have used `grep -E`, not `grep -e`
parent 8870a51b
No related branches found
No related tags found
No related merge requests found
......@@ -2,5 +2,5 @@
set -e
grep -e -q '\[[0-9]+\.[0-9]+\.[0-9]+\]' configure.ac ||
grep -E -q '\[[0-9]+\.[0-9]+\.[0-9]+\]' configure.ac ||
( echo "error: configure.ac: GHC version number must have three components."; exit 1 )
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