diff options
author | Arun Isaac | 2025-06-29 01:01:44 +0100 |
---|---|---|
committer | Arun Isaac | 2025-06-29 01:01:44 +0100 |
commit | f61d31484f5db0779d99ae24c1f15715d9303dc8 (patch) | |
tree | 8c4cecfb1139cfbd722bdbdb970ceb33ba0a7323 | |
parent | c3d7dabe1401e9f98620e3eb7913eac85f7a1e21 (diff) | |
download | ravanan-f61d31484f5db0779d99ae24c1f15715d9303dc8.tar.gz ravanan-f61d31484f5db0779d99ae24c1f15715d9303dc8.tar.lz ravanan-f61d31484f5db0779d99ae24c1f15715d9303dc8.zip |
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.
-rw-r--r-- | ravanan/utils.scm | 4 |
1 files 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 <arunisaac@systemreboot.net> +;;; Copyright © 2024, 2025 Arun Isaac <arunisaac@systemreboot.net> ;;; ;;; 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))))) |