diff --git a/Makefile.rkt b/Makefile.rkt index 501ec16..afca4d8 100644 --- a/Makefile.rkt +++ b/Makefile.rkt @@ -8,12 +8,11 @@ (target commit (let ((st (git 'status))) - (git 'status) + (displayln st) (when (> (length st) 0) - ((git 'add '-A) + (git 'add '-A) (git 'commit) (git 'push)))) - ) (target push (git 'push))