diff options
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/tools/safetynet_compare.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/tools/safetynet_compare.py b/testing/tools/safetynet_compare.py index ef47eab9cd..3c0de03a61 100755 --- a/testing/tools/safetynet_compare.py +++ b/testing/tools/safetynet_compare.py @@ -351,7 +351,8 @@ class CompareRun(object): cmd.append('--cache-dir=%s' % self.args.cache_dir) RunCommandPropagateErr(cmd, exit_status_on_error=1) - RunCommandPropagateErr(['gclient', 'sync'], exit_status_on_error=1) + RunCommandPropagateErr(['gclient', 'sync', '--force'], + exit_status_on_error=1) PrintErr('Done.') @@ -390,7 +391,8 @@ class CompareRun(object): build_dir: String with path to build directory """ PrintErr('Syncing...') - RunCommandPropagateErr(['gclient', 'sync'], exit_status_on_error=1) + RunCommandPropagateErr(['gclient', 'sync', '--force'], + exit_status_on_error=1) PrintErr('Done.') PrintErr('Building...') |