From f61d31484f5db0779d99ae24c1f15715d9303dc8 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 29 Jun 2025 01:01:44 +0100 Subject: utils: Do not canonicalize script file path before loading. It is not the responsibility of load-script to canonicalize file paths; the caller must do that. * ravanan/utils.scm (load-script): Do not canonicalize script file path. --- ravanan/utils.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ravanan/utils.scm b/ravanan/utils.scm index a76a14c..e4fad9c 100644 --- a/ravanan/utils.scm +++ b/ravanan/utils.scm @@ -1,5 +1,5 @@ ;;; ravanan --- High-reproducibility CWL runner powered by Guix -;;; Copyright © 2024 Arun Isaac +;;; Copyright © 2024, 2025 Arun Isaac ;;; ;;; This file is part of ravanan. ;;; @@ -54,4 +54,4 @@ before loading script." ;; define-module invocation" warning during compilation. But, it is ;; probably safe to ignore this warning since we use load only within a ;; dummy module. - (load (canonicalize-path script-file)))))) + (load script-file))))) -- cgit v1.2.3