2
0
mirror of https://github.com/frappe/bench.git synced 2025-01-24 15:38:25 +00:00

Add --overwrite argument

This commit is contained in:
Daniel Weipert 2017-05-15 17:43:37 +02:00
parent a309747f24
commit a04f45b0d9

View File

@ -335,6 +335,9 @@ def parse_commandline_args():
parser.add_argument('--without-bench-setup', dest='without_bench_setup', action='store_true', default=False,
help=argparse.SUPPRESS)
# whether to overwrite an existing bench
parser.add_argument('--overwrite', dest='overwrite', action='store_true', default=False)
args = parser.parse_args()
return args