From 1eb513c54445eebabf048c563f94c9ff2f119f1b Mon Sep 17 00:00:00 2001 From: cpilch Date: Mon, 27 Mar 2017 11:50:33 -0700 Subject: Pass --iswindows flag when on Windows for ADB Pass the --iswindows flag for windows hosts for the ADB recipe. Should fix the cleanup issue we are seeing on the machines. Change-Id: Ibf3438e6a2a8e59752bb47d3ed278687a5653569 --- build/scripts/slave/recipes/adt/adb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/scripts/slave/recipes/adt/adb.py b/build/scripts/slave/recipes/adt/adb.py index 807cb87a..17c28312 100644 --- a/build/scripts/slave/recipes/adt/adb.py +++ b/build/scripts/slave/recipes/adt/adb.py @@ -60,6 +60,8 @@ def RunSteps(api): '--dst', '%s%s/' % (logs_dir, buildername), '--build-dir', build_dir, '--skiplog'] + if api.platform.is_win: + upload_log_args.append('--iswindows') api.python("Zip and Upload Logs", log_util_path, upload_log_args) def GenTests(api): -- cgit v1.2.3