addendum cpplint bugfix 22b375c058

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

View File

@ -37,7 +37,8 @@ jobs:
sys.exit(0)
print("cpplint:")
subprocess.run(["cpplint", "--filter=-legal/copyright"] + cpp_files, check=True, text=True)
for cpp_file in cpp_files:
subprocess.run(["cpplint", "--filter=-legal/copyright"] + cpp_file, check=True, text=True)
print("g++:")
# compile_exts = tuple(".c .c++ .cc .cpp .cu .cxx".split())