Merge pull request #8390 from oxalica/fix/long-path-error-msg

Fix typo in error message of too long store path
This commit is contained in:
Théophane Hufschmitt 2023-05-24 08:33:27 +02:00 committed by GitHub
commit 6e4570234d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,8 +9,8 @@ static void checkName(std::string_view path, std::string_view name)
if (name.empty()) if (name.empty())
throw BadStorePath("store path '%s' has an empty name", path); throw BadStorePath("store path '%s' has an empty name", path);
if (name.size() > StorePath::MaxPathLen) if (name.size() > StorePath::MaxPathLen)
throw BadStorePath("store path '%s' has a name longer than '%d characters", throw BadStorePath("store path '%s' has a name longer than %d characters",
StorePath::MaxPathLen, path); path, StorePath::MaxPathLen);
// See nameRegexStr for the definition // See nameRegexStr for the definition
for (auto c : name) for (auto c : name)
if (!((c >= '0' && c <= '9') if (!((c >= '0' && c <= '9')