From e52bfb0e81d3fb2a474f08b2e2b8b89aadc61d14 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 2 Feb 2017 15:32:57 +0200 Subject: wic: engine: create output dir Make sure output directory exists before creating an image. Create it if it doesn't exist. Signed-off-by: Ed Bartosh Signed-off-by: Ross Burton --- scripts/lib/wic/engine.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts/lib/wic/engine.py') diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py index 592ef77bba..7fb6f1317b 100644 --- a/scripts/lib/wic/engine.py +++ b/scripts/lib/wic/engine.py @@ -187,6 +187,9 @@ def wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir, if debug: msger.set_loglevel('debug') + if not os.path.exists(image_output_dir): + os.makedirs(image_output_dir) + crobj = creator.Creator() cmdline = ["direct", native_sysroot, kernel_dir, bootimg_dir, rootfs_dir, -- cgit 1.2.3-korg