summaryrefslogtreecommitdiffstats
path: root/bin/update
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-05-27 17:26:53 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-05-27 17:41:34 +0200
commitea9030461df4610225376301a72cf0cd7ea631e8 (patch)
treea5cc03f6b8515b358b3a8d30c3651d8611144ad5 /bin/update
parentallow to override settings based updater URL and channel through env (diff)
downloadcore-ea9030461df4610225376301a72cf0cd7ea631e8.tar.gz
core-ea9030461df4610225376301a72cf0cd7ea631e8.zip
fix construction of directory path
Change-Id: I5fa7ce762ae7e429f685a52b0fed1a1f120da8dd
Diffstat (limited to 'bin/update')
-rwxr-xr-xbin/update/create_partial_update.py2
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)