Skip to content

Commit 4ec6eb1

Browse files
committedJul 17, 2017
Fix accidental printError
1 parent f3e4323 commit 4ec6eb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/libstore/store-api.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ void copyPaths(ref<Store> srcStore, ref<Store> dstStore, const PathSet & storePa
614614
checkInterrupt();
615615

616616
if (!dstStore->isValidPath(storePath)) {
617-
printError("copying ‘%s’...", storePath);
617+
printInfo("copying ‘%s’...", storePath);
618618
copyStorePath(srcStore, dstStore, storePath, repair, checkSigs);
619619
}
620620
});

0 commit comments

Comments
 (0)
Please sign in to comment.