From 05306391932bed00134f5c6efc6ee5a7b3131c60 Mon Sep 17 00:00:00 2001 From: Chad Nelson Date: Tue, 28 Nov 2023 08:21:05 -0700 Subject: [PATCH] Updated machine setup --- msg/machine.scm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/msg/machine.scm b/msg/machine.scm index b7bd4bf..9243f19 100644 --- a/msg/machine.scm +++ b/msg/machine.scm @@ -34,12 +34,16 @@ (("init" rest ...) (init rest)) (("reinit") + (stop) (clear-install) (init)) (("start" rest ...) (start rest)) (("stop") (stop)) + (("rm") + (stop) + (clear-install)) (_ (display "Please enter a valid command or -h for help.\n"))))