From 81c49b66928b886823bcdf8dbadff9688a2d3cde Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Sun, 9 Aug 2026 14:57:15 +0200 Subject: [PATCH] Diverse aanpassingen --- Makefile.rkt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.rkt b/Makefile.rkt index e07ec06..3051744 100644 --- a/Makefile.rkt +++ b/Makefile.rkt @@ -15,9 +15,9 @@ (flush-output) (let ((line (read-line))) (set! line (string-trim line)) - (run '(git add -A)) - (run (append '(git "commit" -m ) (list line))) - (run '(git push)) + (apply git-add (map git-status-entry-path (git 'status))) + (git 'commit line) + (git 'push) ) )