summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-11-19 10:30:57 +0100
committerMichał Górny <mgorny@gentoo.org>2017-11-19 10:30:57 +0100
commit2ff176636328834df5ea6e8cb1e214fdbef116da (patch)
tree7dd19988db62d1f295a3b4a5018b40906257f291
parent16125d4aaddda503468639d3632e79aecaa46839 (diff)
downloadgemato-2ff176636328834df5ea6e8cb1e214fdbef116da.tar.gz
cli: Correct the default 'create' path to be a directory
-rw-r--r--gemato/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gemato/cli.py b/gemato/cli.py
index b3b36d9..387303a 100644
--- a/gemato/cli.py
+++ b/gemato/cli.py
@@ -283,7 +283,7 @@ def main(argv):
create = subp.add_parser('create',
help='Create a Manifest tree starting at the specified file')
- create.add_argument('paths', nargs='*', default=['Manifest'],
+ create.add_argument('paths', nargs='*', default=['.'],
help='Paths to create (defaults to "Manifest" if none specified)')
create.add_argument('-c', '--compress-watermark', type=int,
help='Minimum Manifest size for files to be compressed')