We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfcb235 commit ebb06cbCopy full SHA for ebb06cb
src/fprime/util/commands.py
@@ -202,7 +202,7 @@ def run_code_format(
202
for file in dir_path.rglob(f"*{allowed_ext}"):
203
clang_formatter.stage_file(file)
204
# Remove staged files that are within excluded directories
205
- for excluded_dir in parsed.excluded:
+ for excluded_dir in parsed.exclude:
206
excluded_path = Path(excluded_dir)
207
if not excluded_path.is_dir():
208
print(f"[INFO] {excluded_path} is not a directory. Skipping it from excluded directories.")
0 commit comments