aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2023-10-28 01:23:41 +0200
committerLudovic Courtès <ludo@gnu.org>2023-10-28 01:23:41 +0200
commit6eb147dc3146ff6e9651491f8dfa2406c22b9ac5 (patch)
tree04188dc2976f56afe56902ab1b5fcaeb4fbafdb4
parent661672a7f82db706be8dcc962d5e2385bdcf8c78 (diff)
downloadguix-6eb147dc3146ff6e9651491f8dfa2406c22b9ac5.tar
guix-6eb147dc3146ff6e9651491f8dfa2406c22b9ac5.tar.gz
environment: Fix typo in error messages.
* guix/scripts/environment.scm (guix-environment*): Fix typo in error messages. Change-Id: I0b8669cb43267d0456a70f3b157514a6bcc725e8
-rw-r--r--guix/scripts/environment.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm
index ad5d6a1026..6ae3b11e39 100644
--- a/guix/scripts/environment.scm
+++ b/guix/scripts/environment.scm
@@ -1123,11 +1123,11 @@ command-line option processing with 'parse-command-line'."
(when no-cwd?
(leave (G_ "--no-cwd cannot be used without '--container'~%")))
(when emulate-fhs?
- (leave (G_ "'--emulate-fhs' cannot be used without '--container~%'")))
+ (leave (G_ "'--emulate-fhs' cannot be used without '--container'~%")))
(when nesting?
- (leave (G_ "'--nesting' cannot be used without '--container~%'")))
+ (leave (G_ "'--nesting' cannot be used without '--container'~%")))
(when (pair? symlinks)
- (leave (G_ "'--symlink' cannot be used without '--container~%'"))))
+ (leave (G_ "'--symlink' cannot be used without '--container'~%"))))
(with-store/maybe store
(with-status-verbosity (assoc-ref opts 'verbosity)