File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 40
40
stagedFiles=" $stagedFiles $tmpStaging /$file "
41
41
done
42
42
43
- output=$( cd $gitRoot ; python scripts/cpplint.py $stagedFiles 2>&1 )
43
+ output=$( cd $gitRoot ; scripts/cpplint.py $stagedFiles 2>&1 )
44
44
retval=$?
45
45
46
46
if [ $retval -ne 0 ]
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ for file in $diff_files; do
89
89
# Run the linting script and filter by the filter we've build
90
90
# of all the modified lines
91
91
# The errors from the linter go to STDERR so must be redirected to STDOUT
92
- result=` python $script_folder /cpplint.py $file 2>&1 | { grep -E " $lint_grep_filter " || true ; }`
92
+ result=` $script_folder /cpplint.py $file 2>&1 | { grep -E " $lint_grep_filter " || true ; }`
93
93
94
94
# Providing some errors were relevant we print them out
95
95
if [ " $result " ]
You can’t perform that action at this time.
0 commit comments