From 879ffb1e805ca1718119b7557c9a73a3990e901a Mon Sep 17 00:00:00 2001 From: Hans Dijkema Date: Tue, 11 Aug 2026 20:45:44 +0200 Subject: [PATCH] --- Makefile.rkt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Makefile.rkt b/Makefile.rkt index 39d7e36..b23fd33 100644 --- a/Makefile.rkt +++ b/Makefile.rkt @@ -20,5 +20,19 @@ (deps clean) (zip-package)) +(target housekeeping + (displayln "Committing changes for:") + (let ((changes (git 'status))) + (when (> (length changes) 0) + (dgit 'status) + (displayln "Adding...") + (dgit 'add '-A) + (displayln "Committing...") + (dgit 'commit (git-prompt)) + (displayln "Pushing...") + (dgit 'push))) + ) + (target main + (deps housekeeping) (git 'switch "main")) \ No newline at end of file