Skip to content

Commit f5834c3

Browse files
committed
make python path walker print real paths
1 parent 58f091d commit f5834c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/walker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Create a collection of local header (or C) files
77
for current_directory, current_subdirectories, current_files in os.walk(walk_directory):
88
for current_file in current_files:
9-
print(os.path.join(current_directory, current_file))
9+
print(os.path.realpath(os.path.join(current_directory, current_file)))

0 commit comments

Comments
 (0)