aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéophane Hufschmitt <7226587+thufschmitt@users.noreply.github.com>2023-01-02 07:57:46 +0100
committerGitHub <noreply@github.com>2023-01-02 07:57:46 +0100
commitdd115c03199bf72b131652538d847d612e4ab2c6 (patch)
tree464ff1fe8a424c08ba8b1937d750d104cfd0e0e0
parent720c17f89d2cf06927f5ea14b5b8cde676cc0726 (diff)
parent84b08937259745ca743c0b305fc63ab1e1a20d83 (diff)
Merge pull request #7531 from steshaw/fix-error-message
Fix typo in error message
-rw-r--r--src/libstore/builtins/buildenv.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/builtins/buildenv.cc b/src/libstore/builtins/buildenv.cc
index 47458a388..b1fbda13d 100644
--- a/src/libstore/builtins/buildenv.cc
+++ b/src/libstore/builtins/buildenv.cc
@@ -95,7 +95,7 @@ static void createLinks(State & state, const Path & srcDir, const Path & dstDir,
throw Error(
"files '%1%' and '%2%' have the same priority %3%; "
"use 'nix-env --set-flag priority NUMBER INSTALLED_PKGNAME' "
- "or type 'nix profile install --help' if using 'nix profile' to find out how"
+ "or type 'nix profile install --help' if using 'nix profile' to find out how "
"to change the priority of one of the conflicting packages"
" (0 being the highest priority)",
srcFile, readLink(dstFile), priority);