[coreboot-gerrit] Change in coreboot[master]: Fix gitconfig waiting for user input

Alex Thiessen (Code Review) gerrit at coreboot.org
Tue Jan 2 02:34:06 CET 2018


Alex Thiessen has uploaded this change for review. ( https://review.coreboot.org/23058


Change subject: Fix gitconfig waiting for user input
......................................................................

Fix gitconfig waiting for user input

When running `make gitconfig` on a freshly cloned repository, the script
will wait for user input in a call to `sed`, caused by a spurious
newline introduced in commit 9ab8ae6a55681874ec194bc144077ded5363a317.

Change-Id: I616e94f6e951dddbe951e65ebc74eb1d4dc40d2a
Signed-off-by: Alex Thiessen <alex.thiessen.de+coreboot at gmail.com>
---
M util/gitconfig/gitconfig.sh
1 file changed, 1 insertion(+), 1 deletion(-)



  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/58/23058/1

diff --git a/util/gitconfig/gitconfig.sh b/util/gitconfig/gitconfig.sh
index 116e7fb..5f91a69 100755
--- a/util/gitconfig/gitconfig.sh
+++ b/util/gitconfig/gitconfig.sh
@@ -16,7 +16,7 @@
 	if [ -d $hooks ]; then
 		if [ util/gitconfig/commit-msg -nt $hooks/commit-msg ] || \
 			[ ! -x $hooks/commit-msg ]; then
-			sed -e "s,%MAKE%,remake,g"
+			sed -e "s,%MAKE%,remake,g" \
 				util/gitconfig/commit-msg > $hooks/commit-msg
 			chmod +x $hooks/commit-msg
 		fi

-- 
To view, visit https://review.coreboot.org/23058
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I616e94f6e951dddbe951e65ebc74eb1d4dc40d2a
Gerrit-Change-Number: 23058
Gerrit-PatchSet: 1
Gerrit-Owner: Alex Thiessen <pandokos+coreboot at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.coreboot.org/pipermail/coreboot-gerrit/attachments/20180102/e736cb47/attachment-0001.html>


More information about the coreboot-gerrit mailing list