Skip to content

Commit cf607e0

Browse files
committed
print if its a junction
1 parent a5e6fec commit cf607e0

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

python/private/stage2_bootstrap_template.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ def get_build_data(self):
8080
exc.add_note(f"exists: {os.path.exists(path)}")
8181
exc.add_note(f"lexists: {os.path.lexists(path)}")
8282
exc.add_note(f"islink: {os.path.islink(path)}")
83+
exc.add_note(f"isjunction: {os.path.isjunction(path)}")
8384
can_read = os.access(path, os.R_OK)
8485
exc.add_note(f"readable: {can_read}")
8586
raise

0 commit comments

Comments
 (0)