mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-02 20:42:49 +00:00
Bug 1567619 - Avoid double stat in preprocessed file installs; r=glandium
Followup to bug 1566044. Differential Revision: https://phabricator.services.mozilla.com/D38763 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
5bed95bf3d
commit
1c560ed0f2
@ -148,10 +148,14 @@ class BaseFile(object):
|
||||
# enough precision.
|
||||
dest_mtime = int(os.path.getmtime(dest) * 1000)
|
||||
for input in inputs:
|
||||
if not os.path.exists(input):
|
||||
# If an input file was removed, we should update.
|
||||
return True
|
||||
if dest_mtime < int(os.path.getmtime(input) * 1000):
|
||||
try:
|
||||
src_mtime = int(os.path.getmtime(input) * 1000)
|
||||
except OSError as e:
|
||||
if e.errno == errno.ENOENT:
|
||||
# If an input file was removed, we should update.
|
||||
return True
|
||||
raise
|
||||
if dest_mtime < src_mtime:
|
||||
return True
|
||||
return False
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user