Skip to content

Commit e7d15f7

Browse files
committed
more debugging
1 parent 1df8381 commit e7d15f7

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

python/private/stage2_bootstrap_template.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ def get_build_data(self):
7777
if hasattr(exc, "add_note"):
7878
exc.add_note(f"runfiles lookup path: {rlocation_path}")
7979
exc.add_note(f"exists: {os.path.exists(path)}")
80+
exc.add_note(f"lexists: {os.path.lexists(path)}")
81+
exc.add_note(f"islink: {os.path.islink(path)}")
8082
can_read = os.access(path, os.R_OK)
8183
exc.add_note(f"readable: {can_read}")
8284
raise
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
import bazel_binary_info
22

3+
print(bazel_binary_info)
34
print(bazel_binary_info.get_build_data())

0 commit comments

Comments
 (0)