diff options
author | Steven Shaw <steven.shaw@tweag.io> | 2023-01-01 12:37:43 +1000 |
---|---|---|
committer | Steven Shaw <steven.shaw@tweag.io> | 2023-01-01 12:37:43 +1000 |
commit | 84b08937259745ca743c0b305fc63ab1e1a20d83 (patch) | |
tree | 81139a51a6e63abfa3fbb181e0186e96f17c4a01 | |
parent | 8c52f8ea9db6aba495bff7c9b7511a5a5420efab (diff) |
Fix error message
-rw-r--r-- | src/libstore/builtins/buildenv.cc | 2 |
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); |