Skip to content

Commit

Permalink
Merge pull request #647 from xcp-ng/fix/initial_commit_message
Browse files Browse the repository at this point in the history
create_rpm_git_repo.py: Fix initial commit message
  • Loading branch information
stormi authored Apr 26, 2024
2 parents 3eabf84 + a586960 commit 61b47e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/create_rpm_git_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def main():
subprocess.check_call(['git', 'lfs', 'track', '*.tgz'])
subprocess.check_call(['git', 'lfs', 'track', '*.tbz'])
subprocess.check_call(['git', 'add', '.gitattributes'])
subprocess.check_call(['git', 'commit', '-s', '-m Initial commit'])
subprocess.check_call(['git', 'commit', '-s', '-m', 'Initial commit'])
subprocess.check_call(['git', 'push'])

if __name__ == "__main__":
Expand Down

0 comments on commit 61b47e6

Please sign in to comment.