Diverse aanpassingen

This commit is contained in:
2026-08-09 14:57:15 +02:00
parent 2e1899292c
commit 81c49b6692
+3 -3
View File
@@ -15,9 +15,9 @@
(flush-output) (flush-output)
(let ((line (read-line))) (let ((line (read-line)))
(set! line (string-trim line)) (set! line (string-trim line))
(run '(git add -A)) (apply git-add (map git-status-entry-path (git 'status)))
(run (append '(git "commit" -m ) (list line))) (git 'commit line)
(run '(git push)) (git 'push)
) )
) )