From ea9030461df4610225376301a72cf0cd7ea631e8 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sat, 27 May 2017 17:26:53 +0200 Subject: fix construction of directory path Change-Id: I5fa7ce762ae7e429f685a52b0fed1a1f120da8dd --- bin/update/create_partial_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/update') 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) -- cgit