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:12:46 +0000 |
commit | ad116c4d02ccf36e22fbf3e45e45bc508849a833 (patch) | |
tree | c701fe63d464028bdd3a96bb618ece2d3b9c1f74 /scripts/wic | |
parent | d7d26488f252d60628862ee114a4404e8d6cb6f1 (diff) | |
download | openembedded-core-ad116c4d02ccf36e22fbf3e45e45bc508849a833.tar.gz openembedded-core-ad116c4d02ccf36e22fbf3e45e45bc508849a833.tar.bz2 openembedded-core-ad116c4d02ccf36e22fbf3e45e45bc508849a833.zip |
wic: change default output directory
Set default output directory to current dir.
[YOCTO #10783]
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/wic')
-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): """ parser = optparse.OptionParser(usage=usage_str) - parser.add_option("-o", "--outdir", dest="outdir", + parser.add_option("-o", "--outdir", dest="outdir", default='.', help="name of directory to create image in") parser.add_option("-e", "--image-name", dest="image_name", help="name of the image to use the artifacts from " |