From 05beeb5104f596523ec96e13c8c52b2e79dbae22 Mon Sep 17 00:00:00 2001 From: Krishna Vedala Date: Thu, 28 May 2020 14:31:20 -0400 Subject: [PATCH] instead of concatenate, pass filename as argument --- .github/workflows/cpplint_modified_files.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cpplint_modified_files.yml b/.github/workflows/cpplint_modified_files.yml index e21a5114e..a5aa6a652 100644 --- a/.github/workflows/cpplint_modified_files.yml +++ b/.github/workflows/cpplint_modified_files.yml @@ -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())