Skip to content

Commit

Permalink
suggested review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cpelley committed Nov 11, 2024
1 parent 5b25614 commit bb07197
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ OPTIONAL: A pre-commit hook can be added to facilitate the development of this c
Ensure that you have python available on the path, then install the pre-commit hook by running `pre-commit install` from within your working copy.
pre-commit checks will run against modified files when you commit from then on.

These pre-commit hooks will run as part of continuous integration to maintain standards in the project.
These pre-commit hooks will run as part of continuous integration to maintain code quality standards in the project.
6 changes: 3 additions & 3 deletions copyright_check
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ for filepath in $ARGS; do
echo -e ${copyright_header} > ${tmp_file}
cat ${filepath} >> ${tmp_file}
fi
mv ${tmp_file} ${filepath}
found_error=1
fi
mv ${tmp_file} ${filepath}
found_error=1
fi
fi
done

exit ${found_error}

0 comments on commit bb07197

Please sign in to comment.