[bug#60771] [PATCH] tests: disable git log pager usage

2023-01-13 Thread Karl Berry
- (cd "$am_top_srcdir" && git log -1) || st=1 + (cd "$am_top_srcdir" && git --no-pager log -1) || st=1 Sure. Please commit. Thanks. -k

[bug#60771] [PATCH] tests: disable git log pager usage

2023-01-12 Thread Mike Frysinger
When running this code locally, the git log call can trigger a pager depending on the local settings, which in turn forces the test to be interactive. Run git with --no-pager to force disable it. * t/get-sysconf.sh: Run git with --no-pager. --- t/get-sysconf.sh | 2 +- 1 file changed, 1 insertio