Skip to content

Commit 6f3e370

Browse files
committed
update setup not to remove pbs files
1 parent 0da3208 commit 6f3e370

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
shutil.copytree(os.path.join("artifacts", pkg_name), pkg_name)
3434

3535
shutil.rmtree("artifacts", ignore_errors=True)
36-
for name in os.listdir(pkg_name):
37-
path = os.path.join(pkg_name, name)
38-
if "pb2" in path:
39-
os.remove(path)
40-
else:
41-
print(path + ' will be published')
36+
# for name in os.listdir(pkg_name):
37+
# path = os.path.join(pkg_name, name)
38+
# if "pb2" in path:
39+
# os.remove(path)
40+
# else:
41+
# print(path + ' will be published')
4242

4343
install_requires = []
4444
with open(os.path.join(base_dir, "pkg_requires.txt"), "r+") as fd:

0 commit comments

Comments
 (0)