1
0
forked from 0ad/0ad

Make translation pulling parallel to reduce update time.

This was SVN commit r25897.
This commit is contained in:
Stan 2021-09-05 17:39:51 +00:00
parent 480228f964
commit 3fdbe3e8dc

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
# Copyright (C) 2020 Wildfire Games.
# Copyright (C) 2021 Wildfire Games.
# This file is part of 0 A.D.
#
# 0 A.D. is free software: you can redistribute it and/or modify
@ -33,7 +33,7 @@ def main():
path = os.path.join(root, folder)
os.chdir(path)
project = Project(path)
project.pull(fetchall=True, force=True)
project.pull(fetchall=True, force=True, parallel=True)
if __name__ == "__main__":