diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/wic/engine.py | 3 |
1 files changed, 3 insertions, 0 deletions
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, | |||
187 | if debug: | 187 | if debug: |
188 | msger.set_loglevel('debug') | 188 | msger.set_loglevel('debug') |
189 | 189 | ||
190 | if not os.path.exists(image_output_dir): | ||
191 | os.makedirs(image_output_dir) | ||
192 | |||
190 | crobj = creator.Creator() | 193 | crobj = creator.Creator() |
191 | 194 | ||
192 | cmdline = ["direct", native_sysroot, kernel_dir, bootimg_dir, rootfs_dir, | 195 | cmdline = ["direct", native_sysroot, kernel_dir, bootimg_dir, rootfs_dir, |