summaryrefslogtreecommitdiff
path: root/scripts/rh-server.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/rh-server.in')
-rwxr-xr-xscripts/rh-server.in16
1 files changed, 9 insertions, 7 deletions
diff --git a/scripts/rh-server.in b/scripts/rh-server.in
index 9749ec2..a9dd758 100755
--- a/scripts/rh-server.in
+++ b/scripts/rh-server.in
@@ -1,4 +1,5 @@
-#!/usr/bin/env guile
+#!@GUILE@ \
+--no-auto-compile -e main -s
!#
(use-modules (srfi srfi-1)
(config)
@@ -38,7 +39,7 @@
(character #f))
(switch
(name 'serve)
- (synopsis "server the media heap")
+ (synopsis "serve the media heap")
(default #f)
(test boolean?)
(character #t))
@@ -51,16 +52,17 @@
"/reading-heap/"))
(eager? #t))))
(parser sexp-parser)
- (copyright '(2023))
- (version "0.1")
- (license agpl3+)
- (author "Christopher R. Nelson")))
+ (copyright @COPYRIGHT@)
+ (version @HVERSION@)
+ (license @LICENSE@)
+ (author @AUTHOR@)))
(define (main cmd-line)
(let ((options (getopt-config-auto cmd-line config)))
(when (option-ref options 'write)
(options-write options))
- (when (option-ref options 'serve)
+ (when (or (option-ref options 'serve)
+ (not (option-ref options 'write)))
(let* ((media (filetree->media-list (option-ref options 'media-library)))
(priorities (map media-priority media))
(heap (fold heap-insert 'E priorities media)))