1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 22:33:57 +02:00

Add link to tracking issue

(cherry picked from commit 3197c19a31)
This commit is contained in:
Eelco Dolstra 2025-01-17 12:33:23 +01:00 committed by Bryan Lai
parent f27e263f89
commit 876d724061

View file

@ -438,7 +438,8 @@ struct GitInputScheme : InputScheme
if (!isAbsolute(url.path)) { if (!isAbsolute(url.path)) {
warn( warn(
"Fetching Git repository '%s', which uses a path relative to the current directory. " "Fetching Git repository '%s', which uses a path relative to the current directory. "
"This is not supported and will stop working in a future release.", "This is not supported and will stop working in a future release. "
"See https://github.com/NixOS/nix/issues/12281 for details.",
url.to_string()); url.to_string());
} }
repoInfo.url = std::filesystem::absolute(url.path).string(); repoInfo.url = std::filesystem::absolute(url.path).string();