6bb6df
@@ -101,6 +101,7 @@
# For MD5 we want to use the old format of source files, the BSD format
# should only be used when configured for SHA512
self.source_entry_type = 'bsd' if self.lookasidehash != 'md5' else 'old'
+ self.branchre = 'c\d{1,}(s)?(tream)?|master'
@property
def distgitdir(self):
fixes #21
Sets branchre to 'c\d{1}s|master$' to match c*s braches - let me know if we need to cover more patterns
branchre
'c\d{1}s|master$'
Verification: running centpkg clone -B binutils should result in creating a binutils/c9s folder.
centpkg clone -B binutils
binutils/c9s
rebased onto 6bb6dfb
I verified this works, LGTM.
Pull-Request has been merged by carlwgeorge
fixes #21
Sets
branchre
to'c\d{1}s|master$'
to match c*s braches - let me know if we need to cover more patternsVerification: running
centpkg clone -B binutils
should result in creating abinutils/c9s
folder.