diff options
Diffstat (limited to 'tools/ci/push_docs_to_repo.py')
-rwxr-xr-x | tools/ci/push_docs_to_repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ci/push_docs_to_repo.py b/tools/ci/push_docs_to_repo.py index 058f748ec..e34522a29 100755 --- a/tools/ci/push_docs_to_repo.py +++ b/tools/ci/push_docs_to_repo.py @@ -46,7 +46,7 @@ os.chdir(workdir) run(['git', 'init']) # ensure the working branch is called "main" -# (`--initial-branch=main` appared to have failed on older git versions): +# (`--initial-branch=main` appeared to have failed on older git versions): run(['git', 'checkout', '-b', 'main']) run(['git', 'remote', 'add', 'origin', args.remote]) run(['git', 'config', '--local', 'user.name', args.committer]) |