diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-05-27 17:26:53 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-05-27 17:41:34 +0200 |
commit | ea9030461df4610225376301a72cf0cd7ea631e8 (patch) | |
tree | a5cc03f6b8515b358b3a8d30c3651d8611144ad5 /bin/update | |
parent | d33a0917b2b18486811b08007af0b1d8cb3ab9d6 (diff) |
fix construction of directory path
Change-Id: I5fa7ce762ae7e429f685a52b0fed1a1f120da8dd
Diffstat (limited to 'bin/update')
-rwxr-xr-x | bin/update/create_partial_update.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/update/create_partial_update.py b/bin/update/create_partial_update.py index 232cc68bfe1a..aa5a119166db 100755 --- a/bin/update/create_partial_update.py +++ b/bin/update/create_partial_update.py @@ -67,7 +67,7 @@ def download_mar_for_update_channel_and_platform(config, platform, temp_dir): downloaded_updates = {} for update_file in update_files: build = update_file["build"] - filedir = temp_dir + build + filedir = os.path.join(temp_dir, build) mkdir_p(filedir) |