From 20309261d4208caebb13ede1953090670e215624 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Tue, 24 Aug 2021 18:23:45 -0400 Subject: [PATCH] [F] Fix commit argument passing --- scripts/bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/bashrc b/scripts/bashrc index 744e2a9..6b3ba5a 100644 --- a/scripts/bashrc +++ b/scripts/bashrc @@ -34,17 +34,17 @@ lisp() { # Git commit wrapper commit() { - git commit -m "$1" + git commit -m "$@" } commitall() { git add . - commit $1 + commit "$@" } alias commita="commitall" compush() { - commitall $1 + commitall "$@" git push }