diff --git a/src/libfetchers/git.cc b/src/libfetchers/git.cc index c2d3b42ed..eca678bde 100644 --- a/src/libfetchers/git.cc +++ b/src/libfetchers/git.cc @@ -438,7 +438,8 @@ struct GitInputScheme : InputScheme if (!isAbsolute(url.path)) { warn( "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()); } repoInfo.url = std::filesystem::absolute(url.path).string();