mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
environment: Fix typo in error messages.
* guix/scripts/environment.scm (guix-environment*): Fix typo in error messages. Change-Id: I0b8669cb43267d0456a70f3b157514a6bcc725e8
This commit is contained in:
parent
661672a7f8
commit
6eb147dc31
1 changed files with 3 additions and 3 deletions
|
@ -1123,11 +1123,11 @@ (define-syntax-rule (with-store/maybe store exp ...)
|
|||
(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)
|
||||
|
|
Loading…
Reference in a new issue