instead of concatenate, pass filename as argument

This commit is contained in:
Krishna Vedala 2020-05-28 14:31:20 -04:00
parent 10bfe13995
commit 05beeb5104
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7

View File

@ -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())