Skip to content

Commit

Permalink
Fix command syntax (TheAlgorithms#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvedala authored Jul 12, 2020
1 parent 6668742 commit 1f32b4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/awesome_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
if not cpp_files:
sys.exit(0)
subprocess.run(["clang-tidy-10", "--fix", "-p=build", "--extra-args=-std=c++11", *cpp_files, "--"],
subprocess.run(["clang-tidy-10", "--fix", "-p=build", "--extra-arg=-std=c++11", *cpp_files, "--"],
check=True, text=True, stderr=subprocess.STDOUT)
# for cpp_file in cpp_files:
# subprocess.run(["clang-tidy-10", "--fix", "-p=build", cpp_file, "--"],
Expand Down

0 comments on commit 1f32b4e

Please sign in to comment.