Skip to content

Commit 3b9944f

Browse files
committed
Change to use bash instead of sh
1 parent 2958d06 commit 3b9944f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ef-capture.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ void signal_child(int sig) {
174174
static int capture_execl(const char *c) {
175175
int res;
176176

177-
res = execl("/bin/sh", "sh", "-c", c, (char *) NULL);
177+
res = execl("/bin/bash", "bash", "-c", c, (char *) NULL);
178178
return res;
179179
}
180180

0 commit comments

Comments
 (0)