From da9170e372c1d6088dfe38b40adc9953544b32ac Mon Sep 17 00:00:00 2001 From: Chad Nelson Date: Thu, 27 Feb 2025 16:55:52 -0700 Subject: [PATCH] updated script --- LICENSE | 1 + hall.scm | 1 + scripts/msg | 24 ------------------------ 3 files changed, 2 insertions(+), 24 deletions(-) delete mode 100755 scripts/msg diff --git a/LICENSE b/LICENSE index be3f7b2..2beb9e1 100644 --- a/LICENSE +++ b/LICENSE @@ -659,3 +659,4 @@ specific requirements. if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see . + diff --git a/hall.scm b/hall.scm index 2d213e9..ff096f1 100644 --- a/hall.scm +++ b/hall.scm @@ -1,6 +1,7 @@ (hall-description (name "msg") (prefix "") + (postfix "") (version "0.1") (author "Chad Nelson") (email "") diff --git a/scripts/msg b/scripts/msg deleted file mode 100755 index 77b82d5..0000000 --- a/scripts/msg +++ /dev/null @@ -1,24 +0,0 @@ -#!/opt/homebrew/bin/guile \ --e main -s -!# - -(use-modules (msg machine) - (msg shell) - (ice-9 match)) - -(define* (main #:optional (args (command-line))) - (define clean-args (cdr args)) - - (match clean-args - (("machine" rest ...) - (machine rest)) - (("shell" rest ...) - (shell)) - (("-h") - (help)) - (_ - (display "Please enter a valid command or -h for help.\n")))) - -(define* (help) - (display "\nHere are the available commands:\n\n") - (display "machine: interact with the vm environment for MSG.\n"))