diff options
author | Andrew Tropin <andrew@trop.in> | 2022-09-06 09:20:10 +0300 |
---|---|---|
committer | Andrew Tropin <andrew@trop.in> | 2022-10-04 16:46:33 +0400 |
commit | 64213a0b668a25b1944e964cdfd68e488a35bf0a (patch) | |
tree | 86688f206714a662747c889a73f92d638d82de28 /guix/scripts | |
parent | ba84c8c4489e0b22fc692724416829c377b4ee91 (diff) |
deploy: Fix error message.
* guix/scripts/deploy.scm (guix-deploy): Fix error message.
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/deploy.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm index 2c76645173..40a9374171 100644 --- a/guix/scripts/deploy.scm +++ b/guix/scripts/deploy.scm @@ -256,7 +256,7 @@ otherwise." (leave (G_ "missing deployment file argument~%"))) (when (and (pair? command) (not execute-command?)) - (leave (G_ "'--' was used by '-x' was not specified~%"))) + (leave (G_ "'--' was used, but '-x' was not specified~%"))) (with-status-verbosity (assoc-ref opts 'verbosity) (with-store store |