diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-01-10 14:56:03 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2023-01-10 14:56:03 +0100 |
commit | b4dc68f0be07edc3511a4ef276de1cb4e13a676d (patch) | |
tree | 9667b5160e5c30f534bd58909803727437d91f1d | |
parent | b80e4b57dae78490ed644a2e2a840dae39d1da4e (diff) |
Show string in error message
-rw-r--r-- | src/libcmd/installables.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcmd/installables.cc b/src/libcmd/installables.cc index 280212379..d7fdbb13d 100644 --- a/src/libcmd/installables.cc +++ b/src/libcmd/installables.cc @@ -636,7 +636,7 @@ DerivedPathsWithInfo InstallableFlake::toDerivedPaths() } }}; } else - throw Error("flake output attribute '%s' evaluates to a string that does not denote a store path", attrPath); + throw Error("flake output attribute '%s' evaluates to the string '%s' which is not a store path", attrPath, s); } else |