Fix accidental printError

This commit is contained in:
Eelco Dolstra 2017-07-17 11:38:15 +02:00
parent f3e432305a
commit 4ec6eb1fdf
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -614,7 +614,7 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa
checkInterrupt();
if (!dstStore->isValidPath(storePath)) {
printError("copying %s...", storePath);
printInfo("copying %s...", storePath);
copyStorePath(srcStore, dstStore, storePath, repair, checkSigs);
}
});