From: Tim Vaughan Date: Fri, 29 May 2020 08:34:54 +0000 (+0200) Subject: Scripts now evaluated with cwd set to their location. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=rags.git;a=commitdiff_plain;h=e7fdd07ebdf69cc9565345e1f20b429b42fcc3f9 Scripts now evaluated with cwd set to their location. --- diff --git a/rags.scm b/rags.scm index ecc8618..b60a121 100644 --- a/rags.scm +++ b/rags.scm @@ -159,9 +159,12 @@ (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))