1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-15 06:52:43 +01:00

fetchGit: Fix debug message

(cherry picked from commit 80735c4cc9)
This commit is contained in:
Guillaume Maudoux 2018-03-13 10:28:23 +01:00 committed by Eelco Dolstra
parent dd214bb087
commit 4c737abe3e
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -138,7 +138,7 @@ GitInfo exportGit(ref<Store> store, const std::string & uri,
gitInfo.rev = rev != "" ? rev : chomp(readFile(localRefFile));
gitInfo.shortRev = std::string(gitInfo.rev, 0, 7);
printTalkative("using revision %s of repo '%s'", uri, gitInfo.rev);
printTalkative("using revision %s of repo '%s'", gitInfo.rev, uri);
std::string storeLinkName = hashString(htSHA512, name + std::string("\0"s) + gitInfo.rev).to_string(Base32, false);
Path storeLink = cacheDir + "/" + storeLinkName + ".link";