| Index: tools/isolate/isolate.py
|
| diff --git a/tools/isolate/isolate.py b/tools/isolate/isolate.py
|
| index 387cc17d1d15d4e9325341599c5f1169d1622048..7e39bf4caf4e150ece016b7f454ab0d7a92e9e42 100755
|
| --- a/tools/isolate/isolate.py
|
| +++ b/tools/isolate/isolate.py
|
| @@ -177,8 +177,7 @@ def process_inputs(prevdict, indir, infiles, level, read_only):
|
| outdict[infile]['mode'] = filemode
|
| outdict[infile]['size'] = filestats.st_size
|
| # Used to skip recalculating the hash. Use the most recent update time.
|
| - outdict[infile]['timestamp'] = int(round(
|
| - max(filestats.st_mtime, filestats.st_ctime)))
|
| + outdict[infile]['timestamp'] = int(round(filestats.st_mtime))
|
| # If the timestamp wasn't updated, carry on the sha-1.
|
| if (prevdict.get(infile, {}).get('timestamp') ==
|
| outdict[infile]['timestamp'] and
|
|
|