Codebase list rust-directories / e907b98
dev/chain_build.py: fix adding new built deb without _todash() Blair Noctis 1 year, 2 months ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
135135 # use wildcard here to save some cost `walk`ing again
136136 if ver is None:
137137 ver = '-'
138 debs.append(f'*{crate}*{ver}*.deb')
138 debs.append(f'*{_todash(crate)}*{ver}*.deb')
139139
140140
141141 if __name__ == '__main__':