mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-07 04:25:34 +08:00
instead of concatenate, pass filename as argument
This commit is contained in:
2
.github/workflows/cpplint_modified_files.yml
vendored
2
.github/workflows/cpplint_modified_files.yml
vendored
@@ -38,7 +38,7 @@ jobs:
|
||||
|
||||
print("cpplint:")
|
||||
for cpp_file in cpp_files:
|
||||
subprocess.run(["cpplint", "--filter=-legal/copyright"] + cpp_file, check=True, text=True)
|
||||
subprocess.run(["cpplint", "--filter=-legal/copyright", cpp_file], check=True, text=True)
|
||||
|
||||
print("g++:")
|
||||
# compile_exts = tuple(".c .c++ .cc .cpp .cu .cxx".split())
|
||||
|
||||
Reference in New Issue
Block a user