summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2022-12-18 11:35:54 -0500
committerDavid Thompson <dthompson2@worcester.edu>2023-01-06 16:00:25 -0500
commit4c032a6593bd2f9da87801c210351691010154ec (patch)
tree7ba6cfd4677a31676408ccec0c89e4d52b11318b /scripts
parent806e19f450497f62237240fe5a7596d521c3a137 (diff)
Just for fun: Now both host/join programs are graphical.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/edit-garden.in6
-rwxr-xr-xscripts/host-garden.in6
-rwxr-xr-xscripts/join-garden.in6
3 files changed, 12 insertions, 6 deletions
diff --git a/scripts/edit-garden.in b/scripts/edit-garden.in
deleted file mode 100755
index f01d312..0000000
--- a/scripts/edit-garden.in
+++ /dev/null
@@ -1,6 +0,0 @@
-#!@GUILE@ --no-auto-compile
--*- scheme -*-
-!#
-(use-modules (community-garden edit))
-
-(apply edit-garden (cdr (command-line)))
diff --git a/scripts/host-garden.in b/scripts/host-garden.in
new file mode 100755
index 0000000..55e8977
--- /dev/null
+++ b/scripts/host-garden.in
@@ -0,0 +1,6 @@
+#!@GUILE@ --no-auto-compile
+-*- scheme -*-
+!#
+(use-modules (community-garden host))
+
+(apply host-garden (cdr (command-line)))
diff --git a/scripts/join-garden.in b/scripts/join-garden.in
new file mode 100755
index 0000000..dedc262
--- /dev/null
+++ b/scripts/join-garden.in
@@ -0,0 +1,6 @@
+#!@GUILE@ --no-auto-compile
+-*- scheme -*-
+!#
+(use-modules (community-garden join))
+
+(apply join-garden (cdr (command-line)))