summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <sebastian.thiel@icloud.com>2021-04-21 13:38:54 +0800
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-04-21 13:38:54 +0800
commitb10de37fe036b3dd96384763ece9dc1478836287 (patch)
tree5be29a129f105e3beeda23748f1c026234575356
parent46b204d1b2eb6de6eaa31deacf4dd0a9095ca3fa (diff)
downloadgitpython-b10de37fe036b3dd96384763ece9dc1478836287.tar.gz
Fix publishing branches
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 709813ff..f5d8a108 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ release: clean
make force_release
force_release: clean
- git push --tags origin master
+ git push --tags origin main
python3 setup.py sdist bdist_wheel
twine upload -s -i 27C50E7F590947D7273A741E85194C08421980C9 dist/*
@@ -24,7 +24,7 @@ docker-build:
test: docker-build
# NOTE!!!
- # NOTE!!! If you are not running from master or have local changes then tests will fail
+ # NOTE!!! If you are not running from main or have local changes then tests will fail
# NOTE!!!
docker run --rm -v ${CURDIR}:/src -w /src -t gitpython:xenial tox