Skip to content

Commit

Permalink
Merge pull request #11 from smallbirdking/main
Browse files Browse the repository at this point in the history
fix format
  • Loading branch information
OpenGuidou authored Jun 7, 2024
2 parents b8d3de8 + f368083 commit 88c35d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/GitHelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def push_changes_in_pull_request(self, repository, message, target_branch, head_
r.git.execute(['git', 'config', '--global', '--add', 'safe.directory', clone_path])
r.git.execute(['git', 'checkout', '-b', target_branch])
files_to_add = r.git.execute(
['git', 'ls-files', '--others', '--exclude-standard', 'grep', '\.java', '|', 'grep', 'src/test'])
['git', 'ls-files', '--others', '--exclude-standard', 'grep', '\\.java', '|', 'grep', 'src/test'])
r.git.execute(['git', 'add', files_to_add])
r.git.commit('-am', message)
origin = r.remote(name='origin')
Expand Down

0 comments on commit 88c35d8

Please sign in to comment.