Skip to content
Snippets Groups Projects
Commit 6acc093c authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

RF: Default output directory

parent d538d86f
No related branches found
No related tags found
1 merge request!30Mnt/default output dir
...@@ -526,7 +526,8 @@ def parseArgs(argv): ...@@ -526,7 +526,8 @@ def parseArgs(argv):
# Shared options # Shared options
'inputDir' : 'Location of input data directory', 'inputDir' : 'Location of input data directory',
'benchmarkDir' : 'Location of benchmark data directory', 'benchmarkDir' : 'Location of benchmark data directory',
'outputDir' : 'Location of output directory', 'outputDir' : 'Location of output directory. Defaults to '
'"pyfeeds-out"',
'overwrite' : 'Overwrite output directory if it exists', 'overwrite' : 'Overwrite output directory if it exists',
'config' : 'Pyfeeds configuration file', 'config' : 'Pyfeeds configuration file',
'hashFile' : 'File to read/write test hashes (default: ' 'hashFile' : 'File to read/write test hashes (default: '
...@@ -702,7 +703,8 @@ def parseArgs(argv): ...@@ -702,7 +703,8 @@ def parseArgs(argv):
# Options shared by the run/bundle sub-commands # Options shared by the run/bundle sub-commands
runbunParser = argparse.ArgumentParser(add_help=False) runbunParser = argparse.ArgumentParser(add_help=False)
runbunParser.add_argument(*flags['outputDir'], runbunParser.add_argument(*flags['outputDir'],
help=helps['outputDir']) help=helps['outputDir'],
default='pyfeeds-out')
runbunParser.add_argument(*flags['overwrite'], runbunParser.add_argument(*flags['overwrite'],
help=helps['overwrite'], help=helps['overwrite'],
action='store_true') action='store_true')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment