shithub: rgbds

Download patch

ref: 3c14f9760f8657be1bd445d40f57fafc7239ddd7
parent: 3c15b141e07a099bbb33e092d594efa95ea8074e
author: Antonio Niño Díaz <[email protected]>
date: Wed Jan 3 14:46:48 EST 2018

Fix echo command in checkpatch target in Makefile

Signed-off-by: Antonio Niño Díaz <[email protected]>

--- a/Makefile
+++ b/Makefile
@@ -159,7 +159,7 @@
 checkpatch:
 	$Qeval COMMON_COMMIT=$$(git merge-base HEAD origin/develop);	\
 	for commit in `git rev-list $$COMMON_COMMIT..HEAD`; do		\
-		echo "[*] Analyzing commit "$$commit"" &&		\
+		echo "[*] Analyzing commit '$$commit'" &&		\
 		git format-patch --stdout "$$commit~..$$commit"		\
 			| ${CHECKPATCH} - || true;\
 	done