forked from lix-project/lix
* Don't check for staleness by default.
This commit is contained in:
parent
e6363b05ae
commit
135b7d54db
|
@ -166,7 +166,10 @@ string expandHash(const Hash & hash, const string & target,
|
|||
{
|
||||
string path = *i;
|
||||
try {
|
||||
#if 0
|
||||
if (path == target && hashPath(path) == hash)
|
||||
#endif
|
||||
if (path == target && pathExists(path))
|
||||
return path;
|
||||
} catch (Error & e) {
|
||||
debug(format("stale path: %1%") % e.msg());
|
||||
|
|
Loading…
Reference in a new issue