Explorar o código

scripts: dl_cleanup.py: properly detect file names with <date>-<githash> version string

SVN-Revision: 36729
Jo-Philipp Wich %!s(int64=12) %!d(string=hai) anos
pai
achega
1c9bc8822d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      scripts/dl_cleanup.py

+ 1 - 1
scripts/dl_cleanup.py

@@ -87,9 +87,9 @@ extensions = (
 )
 
 versionRegex = (
-	(re.compile(r"(.+)[-_]([0-9a-fA-F]{40,40})"), parseVer_GIT),		# xxx-GIT_SHASUM
 	(re.compile(r"(.+)[-_](\d+)\.(\d+)\.(\d+)\.(\d+)"), parseVer_1234),	# xxx-1.2.3.4
 	(re.compile(r"(.+)[-_](\d\d\d\d)-?(\d\d)-?(\d\d)"), parseVer_ymd),	# xxx-YYYY-MM-DD
+	(re.compile(r"(.+)[-_]([0-9a-fA-F]{40,40})"), parseVer_GIT),		# xxx-GIT_SHASUM
 	(re.compile(r"(.+)[-_](\d+)\.(\d+)\.(\d+)(\w?)"), parseVer_123),	# xxx-1.2.3a
 	(re.compile(r"(.+)[-_](\d+)_(\d+)_(\d+)"), parseVer_123),		# xxx-1_2_3
 	(re.compile(r"(.+)[-_](\d+)\.(\d+)(\w?)"), parseVer_12),		# xxx-1.2a