diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2012-03-05T17·13+0100 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2012-03-05T17·13+0100 |
commit | 2b4964f31979b5227a7a51b646d2e4bbb5ef6579 (patch) | |
tree | f380690318c3613ede8fd80d604c4102621e67bd /src | |
parent | 56042a120a3149ec7ddfb36c6f7d7b841ba6dfeb (diff) |
Restore progress indication during nix-copy-closure
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/local-store.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index db84cd23ce74..231640eadfa2 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -1276,6 +1276,8 @@ Path LocalStore::importPath(bool requireSignature, Source & source) Path dstPath = readStorePath(hashAndReadSource); + printMsg(lvlInfo, format("importing path `%1%'") % dstPath); + PathSet references = readStorePaths<PathSet>(hashAndReadSource); Path deriver = readString(hashAndReadSource); |