summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-30 22:03:52 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-07-30 22:03:52 +0200
commitc7228eeac0e8f6182b2ad1477a0d8fb53124417c (patch)
tree1446145f44313bdc2066435c215ab1d2534102a1
parentad83c05839ce5ae0c0ff74200dbdb0e577beb67c (diff)
fix(update): resign from conditional separators
-rw-r--r--suweren/update.scm12
1 files changed, 4 insertions, 8 deletions
diff --git a/suweren/update.scm b/suweren/update.scm
index c060067..1381b2c 100644
--- a/suweren/update.scm
+++ b/suweren/update.scm
@@ -7,10 +7,6 @@
#:use-module (gnu services))
;; string
-(define and*
- " && ")
-
-;; string
(define delete-garbage
"sudo guix gc -d 7d")
@@ -33,9 +29,9 @@
;; string
(define collect-garbage
(string-append delete-home-generations
- and*
+ " ; "
delete-system-generations
- and*
+ " ; "
delete-garbage))
;; string ->
@@ -62,9 +58,9 @@
;; string
(define (update-system reconfigure-system*)
(string-append pull-guix
- and*
+ " ; "
reconfigure-system*
- and*
+ " ; "
collect-garbage))
;; string ->