Scripts now evaluated with cwd set to their location.
authorTim Vaughan <plugd@thelambdalab.xyz>
Fri, 29 May 2020 08:34:54 +0000 (10:34 +0200)
committerTim Vaughan <plugd@thelambdalab.xyz>
Fri, 29 May 2020 08:34:54 +0000 (10:34 +0200)
rags.scm

index ecc8618..b60a121 100644 (file)
--- a/rags.scm
+++ b/rags.scm
 
 (define (serve-script config uri)
   ;; Scripts are responsible for the entire response, including header
-  (let ((path (document-path config uri)))
-    (apply (eval (with-input-from-file path read))
-           (list uri))))
+  (let* ((path (document-path config uri))
+         (proc (eval (with-input-from-file path read))))
+    (with-current-working-directory
+     (pathname-directory (document-path config uri))
+     (lambda ()
+       (apply proc (list uri))))))
 
 (define (with-current-working-directory directory thunk)
   (let ((old-wd (current-directory))