Unverified Commit ade806b4 authored by Rhett Ying's avatar Rhett Ying Committed by GitHub
Browse files

[dev] exclude dist dir (#7176)

parent 0c3a4428
...@@ -85,7 +85,7 @@ def cleanup(): ...@@ -85,7 +85,7 @@ def cleanup():
remove_lib("graphbolt") remove_lib("graphbolt")
# Remove build artifacts. # Remove build artifacts.
dir_to_remove = ["build", "dist", "dgl.egg-info"] dir_to_remove = ["build", "dgl.egg-info"]
for dir_ in dir_to_remove: for dir_ in dir_to_remove:
print(f"Removing {dir_}") print(f"Removing {dir_}")
if os.path.isdir(dir_): if os.path.isdir(dir_):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment