We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61118ea commit 6075ec6Copy full SHA for 6075ec6
ci/cleanup-binary-tags.py
@@ -9,7 +9,7 @@ def tag_to_version(tag):
9
return tag.split('-')[1].lstrip('v')
10
11
12
-subprocess.check_call('git pull --tags', shell=True)
+subprocess.check_call('git fetch --tags', shell=True)
13
tags = subprocess.check_output(
14
'git tag --list | grep binary', shell=True).decode('UTF-8').splitlines()
15
versions = sorted(list(set([tag_to_version(tag) for tag in tags])),
0 commit comments