diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-01-24 15:43:49 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-31 14:38:31 +0000 |
commit | 88dce2cf41304df1716472864a36f6be4ad3c502 (patch) | |
tree | 0d400d1daef4a6d6caea5ab94b734bae004f7967 /scripts | |
parent | d45d4a5a21ab4209b87331dddf515ecdb62367fa (diff) | |
download | poky-88dce2cf41304df1716472864a36f6be4ad3c502.tar.gz |
wic: change default output directory
Set default output directory to current dir.
[YOCTO #10783]
(From OE-Core rev: ad116c4d02ccf36e22fbf3e45e45bc508849a833)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/wic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/wic b/scripts/wic index 8918cb4853..54cbe96682 100755 --- a/scripts/wic +++ b/scripts/wic | |||
@@ -88,7 +88,7 @@ def wic_create_subcommand(args, usage_str): | |||
88 | """ | 88 | """ |
89 | parser = optparse.OptionParser(usage=usage_str) | 89 | parser = optparse.OptionParser(usage=usage_str) |
90 | 90 | ||
91 | parser.add_option("-o", "--outdir", dest="outdir", | 91 | parser.add_option("-o", "--outdir", dest="outdir", default='.', |
92 | help="name of directory to create image in") | 92 | help="name of directory to create image in") |
93 | parser.add_option("-e", "--image-name", dest="image_name", | 93 | parser.add_option("-e", "--image-name", dest="image_name", |
94 | help="name of the image to use the artifacts from " | 94 | help="name of the image to use the artifacts from " |