diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-07-07 08:47:36 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-07-07 08:47:36 +0200 |
| commit | 3f3be050c02a1f1846fa30ca337e711c16e300f9 (patch) | |
| tree | dcdeb6eba39313b3f8ca80ae92b32a79da726ea3 /pkg/vcs/testdata/linux | |
| parent | ef6b94b52219de122b7848a031dbcae34ca80965 (diff) | |
pkg/vcs: fix config bisection test
/bin/bash is usually installed on linux'es,
but not on other OSes, e.g. *BSDs.
Use /bin/sh instead of /bin/bash.
Diffstat (limited to 'pkg/vcs/testdata/linux')
| -rwxr-xr-x | pkg/vcs/testdata/linux/config-bisect.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/vcs/testdata/linux/config-bisect.pl b/pkg/vcs/testdata/linux/config-bisect.pl index 1ed8a377f..3388e3da0 100755 --- a/pkg/vcs/testdata/linux/config-bisect.pl +++ b/pkg/vcs/testdata/linux/config-bisect.pl @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright 2020 syzkaller project authors. All rights reserved. # Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. # config-bisect.pl -l ctx.git.dir -r -b ctx.git.dir kernelBaselineConfig kernelConfig |
