Signed-off-by: merspieler <merspieler@airmail.cc>
This commit is contained in:
merspieler 2019-04-25 03:38:11 +02:00
parent 7f5382cbd4
commit 98a72a4dce

3
build
View file

@ -39,7 +39,7 @@ while i < argc:
create_zip = True create_zip = True
elif sys.argv[i] == "-c" or sys.argv[i] == "--continue": elif sys.argv[i] == "-c" or sys.argv[i] == "--continue":
build_all = False build_all = False
build_continue == True build_continue = True
elif sys.argv[i] == "-f" or sys.argv[i] == "--fix": elif sys.argv[i] == "-f" or sys.argv[i] == "--fix":
build_all = False build_all = False
build_fix = True build_fix = True
@ -181,6 +181,7 @@ try:
else: else:
for area in bounds: for area in bounds:
run_build(area["west"], area["south"], area["east"], area["north"]) run_build(area["west"], area["south"], area["east"], area["north"])
if build_continue: if build_continue:
start_bounds = get_bounds("projects/" + project + "/done") start_bounds = get_bounds("projects/" + project + "/done")
if start_bounds == []: if start_bounds == []: