Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Nov 30, 2023
1 parent 3bbedac commit ed6c2b5
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@
BUILD_DIR = os.path.join(ROOT_DIR, "build", "native")

def print_tree(path):
print(f'---- walking {path}')
for root, dirs, files in os.walk(path):
for f in files:
print(os.path.join(root, f))
print('----')
try:
print(f'---- walking {path}')
for root, dirs, files in os.walk(path):
for f in files:
print(os.path.join(root, f))
print('----')
except:
print('Failed')

print_tree(os.path.dirname(sys.executable) + '/../../../../')
print_tree(sysconfig.get_path('include'))
Expand Down

0 comments on commit ed6c2b5

Please sign in to comment.