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

Fix some instances of 'will'

This commit is contained in:
Luc Perkins 2025-06-06 10:51:58 -07:00
parent 76b9be3782
commit a989a23d1a
No known key found for this signature in database
GPG key ID: C86EE5D85EE4DDA5
19 changed files with 137 additions and 138 deletions

View file

@ -218,7 +218,7 @@ StorePath Store::addToStore(
if (settings.warnLargePathThreshold && lengthSource.total >= settings.warnLargePathThreshold) {
static bool failOnLargePath = getEnv("_NIX_TEST_FAIL_ON_LARGE_PATH").value_or("") == "1";
if (failOnLargePath)
throw Error("won't copy large path '%s' to the store (%d)", path, renderSize(lengthSource.total));
throw Error("doesn't copy large path '%s' to the store (%d)", path, renderSize(lengthSource.total));
warn("copied large path '%s' to the store (%d)", path, renderSize(lengthSource.total));
}
});