We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71b6319 commit 3bf4f8dCopy full SHA for 3bf4f8d
test/lint/commit-script-check.sh
@@ -22,6 +22,11 @@ if ! sed --help 2>&1 | grep -q 'GNU'; then
22
exit 1;
23
fi
24
25
+if ! grep --help 2>&1 | grep -q 'GNU'; then
26
+ echo "Error: the installed grep package is not compatible. Please make sure you have GNU grep installed in your system.";
27
+ exit 1;
28
+fi
29
+
30
RET=0
31
PREV_BRANCH=$(git name-rev --name-only HEAD)
32
PREV_HEAD=$(git rev-parse HEAD)
0 commit comments