Merge branch 'fix'
* fix: git-log produces no output
This commit is contained in:
commit
285755127a
2
pager.c
2
pager.c
@ -8,6 +8,7 @@
|
||||
static void run_pager(const char *pager)
|
||||
{
|
||||
execlp(pager, pager, NULL);
|
||||
execl("/bin/sh", "sh", "-c", pager, NULL);
|
||||
}
|
||||
|
||||
void setup_pager(void)
|
||||
@ -47,5 +48,6 @@ void setup_pager(void)
|
||||
|
||||
setenv("LESS", "-S", 0);
|
||||
run_pager(pager);
|
||||
die("unable to execute pager '%s'", pager);
|
||||
exit(255);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user