Skip to content

Commit efe81b8

Browse files
author
Edward Thomson
committed
script/cibuild: add --no-pager when logging
If you're running `script/cibuild` yourself, from an actual tty, then `git log` will by default invoke your pager.
1 parent 5af96de commit efe81b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/cibuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export RBENV_VERSION="2.1.2-github"
1010
export CI_BUILD=1
1111

1212
# Write commit we're building at
13-
git log -n 1 || true
13+
git --no-pager log -n 1 || true
1414
echo
1515

1616
git submodule update --init

0 commit comments

Comments
 (0)