aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2025-06-25 12:58:20 +0100
committerArun Isaac2025-06-26 14:50:28 +0100
commitb5274e92969e1aa5f5406a535139a8f965b8d277 (patch)
tree5a3097459b11091a785510990244d4c198e07e5d
parent90904b4ebf573857fb02347dc2276d6c1322e307 (diff)
downloadravanan-b5274e92969e1aa5f5406a535139a8f965b8d277.tar.gz
ravanan-b5274e92969e1aa5f5406a535139a8f965b8d277.tar.lz
ravanan-b5274e92969e1aa5f5406a535139a8f965b8d277.zip
command-line-tool: Clarify disabling WorkReuse message.
* ravanan/command-line-tool.scm (build-command-line-tool-script): Clarify it is "disabling WorkReuse" that is unnecessary.
-rw-r--r--ravanan/command-line-tool.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ravanan/command-line-tool.scm b/ravanan/command-line-tool.scm
index 35ccff2..f674c8a 100644
--- a/ravanan/command-line-tool.scm
+++ b/ravanan/command-line-tool.scm
@@ -713,7 +713,7 @@ same as in @code{run-workflow} from @code{(ravanan workflow)}."
(maybe-let* ((work-reuse (find-requirement requirements "WorkReuse")))
(and (not (coerce-type (assoc-ref* work-reuse "enableReuse")
'boolean))
- (user-error "Disabling WorkReuse is not supported. ravanan's strong caching using Guix makes it unnecessary."))))
+ (user-error "Disabling WorkReuse is not supported. With ravanan's strong caching using Guix, there is no need to disable WorkReuse."))))
(maybe-let* ((hints (maybe-assoc-ref (just cwl) "hints")))
(check-requirements hints
batch-system
@@ -724,7 +724,7 @@ same as in @code{run-workflow} from @code{(ravanan workflow)}."
(maybe-let* ((work-reuse (find-requirement hints "WorkReuse")))
(and (not (coerce-type (assoc-ref* work-reuse "enableReuse")
'boolean))
- (warning "Ignoring disable of WorkReuse. ravanan's strong caching using Guix makes it unnecessary."))))
+ (warning "Ignoring disable of WorkReuse. With ravanan's strong caching using Guix, there is no need to disable WorkReuse."))))
(build-gexp-script name
(let* ((requirements (inherit-requirements (or (assoc-ref cwl "requirements")
#())