Skip to content

Commit

Permalink
Merge pull request #86 from dinkelk/c-link-fix
Browse files Browse the repository at this point in the history
Hot fix to amend #85
  • Loading branch information
dinkelk authored Oct 17, 2024
2 parents d41ed7b + 9ecce70 commit 54c10d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redo/rules/build_executable.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ def _build(self, redo_1, redo_2, redo_3):
# Iterate over each directory in the C source path list
for directory in c_source_path:
# Walk the directory and find all files
for root, _, files in os.walk(directory):
for files in os.listdir(directory):
for file in files:
# Check if the file has one of the supported extensions
basename, fext = os.path.splitext(file)
Expand Down

0 comments on commit 54c10d1

Please sign in to comment.