From aaa7d8e83e4e07a4c2cd4b5f7ccac0b581f4dade Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 28 Mar 2022 13:43:36 +0200 Subject: Simplify main scripts. --- production-main | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'production-main') diff --git a/production-main b/production-main index 69f1bc06..69939def 100644 --- a/production-main +++ b/production-main @@ -1,3 +1,3 @@ #!/bin/bash GUILE=${GUILE:-guile} -exec "$GUILE" -c '((@ (calp main) main) (command-line))' "$@" +exec "$GUILE" -e '(@ (calp main) main)' "$@" -- cgit v1.2.3 From 644ef0aa848c2cef6621e0ae6be8b14322b015d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 11 Sep 2023 00:30:49 +0200 Subject: Change how entry point is handled. Replaces the old main sh bootstrap entry point to one written in C. The reasons are in the C file, but in short, Guile's command line is less than ideal. --- production-main | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 production-main (limited to 'production-main') diff --git a/production-main b/production-main deleted file mode 100644 index 69939def..00000000 --- a/production-main +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -GUILE=${GUILE:-guile} -exec "$GUILE" -e '(@ (calp main) main)' "$@" -- cgit v1.2.3