diff options
-rw-r--r-- | ravanan/command-line-tool.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ravanan/command-line-tool.scm b/ravanan/command-line-tool.scm index c4ba42c..d00dc4a 100644 --- a/ravanan/command-line-tool.scm +++ b/ravanan/command-line-tool.scm @@ -448,7 +448,7 @@ Return value is monadic." `(lambda (store) ;; Do not auto-compile manifest files. (map search-path-specification->sexp - (manifest-search-paths (load ,(canonicalize-path manifest-file)))))) + (manifest-search-paths (load ,manifest-file))))) (if inferior (begin @@ -470,7 +470,7 @@ Return value is monadic." (set! %load-should-auto-compile #f) (derivation-file-name (run-with-store store - (profile-derivation (load ,(canonicalize-path manifest-file)) + (profile-derivation (load ,manifest-file) #:allow-collisions? #t))))) (if inferior |