1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-11 13:06:01 +01:00

Make sandbox error messages more readable

This commit is contained in:
Eelco Dolstra 2025-05-30 20:56:51 +02:00 committed by Cole Helbling
parent 803d461e95
commit a0fb93f09b

View file

@ -1016,7 +1016,7 @@ void DerivationBuilderImpl::processSandboxSetupMessages()
e.addTrace({}, "while waiting for the build environment for '%s' to initialize (%s, previous messages: %s)", e.addTrace({}, "while waiting for the build environment for '%s' to initialize (%s, previous messages: %s)",
store.printStorePath(drvPath), store.printStorePath(drvPath),
statusToString(status), statusToString(status),
concatStringsSep("|", msgs)); concatStringsSep("\n", msgs));
throw; throw;
} }
}(); }();