mirror of
https://github.com/NixOS/nix
synced 2025-06-28 09:31:16 +02:00
libfetchers/git: fix double quoting in error message
This commit is contained in:
parent
2c1447b7f2
commit
559a2d1bc7
1 changed files with 1 additions and 1 deletions
|
@ -637,7 +637,7 @@ struct GitInputScheme : InputScheme
|
||||||
if (!input.getRev())
|
if (!input.getRev())
|
||||||
setWriteTime(localRefFile, now, now);
|
setWriteTime(localRefFile, now, now);
|
||||||
} catch (Error & e) {
|
} catch (Error & e) {
|
||||||
warn("could not update mtime for file '%s': %s", localRefFile, e.info().msg);
|
warn("could not update mtime for file %s: %s", localRefFile, e.info().msg);
|
||||||
}
|
}
|
||||||
if (!originalRef && !storeCachedHead(repoUrl.to_string(), ref))
|
if (!originalRef && !storeCachedHead(repoUrl.to_string(), ref))
|
||||||
warn("could not update cached head '%s' for '%s'", ref, repoInfo.locationToArg());
|
warn("could not update cached head '%s' for '%s'", ref, repoInfo.locationToArg());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue