1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 06:01:48 +02:00

local-derivation-goal.cc: Remove *all* trailing slashes

This commit is contained in:
Robert Hensing 2024-03-24 00:45:57 +01:00
parent fd31945742
commit dd26f41379

View file

@ -2093,7 +2093,8 @@ void LocalDerivationGoal::runChild()
Path globalTmpDir = canonPath(defaultTempDir(), true);
/* They don't like trailing slashes on subpath directives */
if (globalTmpDir.back() == '/') globalTmpDir.pop_back();
while (!globalTmpDir.empty() && globalTmpDir.back() == '/')
globalTmpDir.pop_back();
if (getEnv("_NIX_TEST_NO_SANDBOX") != "1") {
builder = "/usr/bin/sandbox-exec";