From b3fdab43d10f20a627b4583923c67ba1e47e7864 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Tue, 24 Aug 2021 19:49:32 -0400 Subject: [PATCH] [F] Fix commit command without parenthesis --- scripts/bashrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/bashrc b/scripts/bashrc index 6b3ba5a..0a5c8fc 100644 --- a/scripts/bashrc +++ b/scripts/bashrc @@ -34,7 +34,8 @@ lisp() { # Git commit wrapper commit() { - git commit -m "$@" + msg="$@" + git commit -m "$msg" } commitall() {