We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe03f7a commit 30df5c3Copy full SHA for 30df5c3
test/lint/commit-script-check.sh
@@ -17,6 +17,11 @@ if test -z "$1"; then
17
exit 1
18
fi
19
20
+if ! sed --help | grep -q 'GNU'; then
21
+ echo "Error: the installed sed package is not compatible. Please make sure you have GNU sed installed in your system.";
22
+ exit 1;
23
+fi
24
+
25
RET=0
26
PREV_BRANCH=$(git name-rev --name-only HEAD)
27
PREV_HEAD=$(git rev-parse HEAD)
0 commit comments