Skip to content
Snippets Groups Projects
Commit f78554eb authored by wangchao's avatar wangchao
Browse files

b=2552

r=shaver
Don't allow batchfile contain --merge, --input and --output for lmc --batch batchfile.
parent 86fb040c
No related branches found
No related tags found
No related merge requests found
......@@ -1081,6 +1081,9 @@ def main():
for cmd in batchCommands:
try:
options, args = cl.parse(string.split(cmd))
if options.merge or options.input or options.output:
print "The batchfile should not contain --merge, --input or --output."
sys.exit(1)
do_command(gen, lustre, options, args)
except OptionError, e:
panic(cmd, e)
......
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