0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-16 09:38:19 +02:00

Disable pager for ci script

... otherwise it hangs
This commit is contained in:
Richard van der Hoff 2018-12-11 14:11:30 +00:00
parent a2ed0f287e
commit 2755a0d48a
2 changed files with 3 additions and 2 deletions

View file

@ -20,7 +20,7 @@ else
fi
# Show what we are before
git show -s
git --no-pager show -s
# Set up username so it can do a merge
git config --global user.email bot@matrix.org
@ -31,4 +31,4 @@ git fetch -u origin $GITBASE
git merge --no-edit origin/$GITBASE
# Show what we are after.
git show -s
git --no-pager show -s

1
changelog.d/4291.misc Normal file
View file

@ -0,0 +1 @@
Disable pager when running git-show in CI