Fix accidental printError

This commit is contained in:
Eelco Dolstra
2017-07-17 11:38:15 +02:00
parent f3e432305a
commit 4ec6eb1fdf
+1 -1
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);
}
});