Commit 8a309ea5 by Feanil Patel

Update to pull down new tags as well.

parent 72a164af
...@@ -84,7 +84,7 @@ def update_repos(): ...@@ -84,7 +84,7 @@ def update_repos():
run_cmd('git clone --mirror {} {}'.format(repo['html_url'], repo_path)) run_cmd('git clone --mirror {} {}'.format(repo['html_url'], repo_path))
run_cmd('cd {} && git update-server-info'.format(repo_path)) run_cmd('cd {} && git update-server-info'.format(repo_path))
else: else:
run_cmd('cd {} && git remote-update'.format(repo_path)) run_cmd('cd {} && git fetch --all --tags'.format(repo_path))
run_cmd('cd {} && git update-server-info'.format(repo_path)) run_cmd('cd {} && git update-server-info'.format(repo_path))
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment