Skip to content

Commit 6075ec6

Browse files
committed
Adjust pulling tags in CI
1 parent 61118ea commit 6075ec6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/cleanup-binary-tags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def tag_to_version(tag):
99
return tag.split('-')[1].lstrip('v')
1010

1111

12-
subprocess.check_call('git pull --tags', shell=True)
12+
subprocess.check_call('git fetch --tags', shell=True)
1313
tags = subprocess.check_output(
1414
'git tag --list | grep binary', shell=True).decode('UTF-8').splitlines()
1515
versions = sorted(list(set([tag_to_version(tag) for tag in tags])),

0 commit comments

Comments
 (0)