diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-20 01:39:06 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-20 01:39:06 +0200 |
commit | b9f85538e65882238de80ab36c864bc0082ad7f4 (patch) | |
tree | 29a2c37aa274d102f1ea217870e6f3cab7d50e97 /bin | |
parent | 5b60aeb5cb6306f84f6ec44adbe1033e89a2962c (diff) |
updater: another place needs to handle additional dir level on windows
Change-Id: I04f784d317b8cfeea25932728f03c92b0b73c70e
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/update/create_partial_update.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/update/create_partial_update.py b/bin/update/create_partial_update.py index e4005d5173a9..694fbb204eaa 100755 --- a/bin/update/create_partial_update.py +++ b/bin/update/create_partial_update.py @@ -116,6 +116,8 @@ def main(): update_dir = updater_path.get_update_dir() current_build_path = add_single_dir(current_build_path) + if sys.platform == "cygwin": + current_build_path = add_single_dir(current_build_path) config = parse_config(update_config) |