Added no_commit option

This commit is contained in:
2022-01-04 16:06:43 +01:00
parent 18f406b1d0
commit d36ec0e312
3 changed files with 9 additions and 0 deletions

View File

@@ -28,6 +28,10 @@ _git_changed() {
echo "Running autopep8..."
autopep8 -i -r $INPUT_CHECKPATH $INPUT_OPTIONS || echo "Problem running autopep8!"
if $INPUT_NO_COMMIT; then
exit 0
fi
if _git_changed;
then
if $INPUT_DRY; then