git: 9front

Download patch

ref: 9d499d36e2176449a7cca75a6c1f3ff8efc88ff0
parent: 6ba62a039631802779a6d44a1eb1e79af5e98bd3
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Jul 31 15:41:27 EDT 2022

git/commit: fix typo in if statement

--- a/sys/src/cmd/git/commit
+++ b/sys/src/cmd/git/commit
@@ -101,7 +101,7 @@
 }
 
 fn sigexit{
-	if(~ ! $#msgfile 0)
+	if(! ~ $#msgfile 0)
 		rm -f $msgfile $msgfile.tmp
 }
 
--