diff options
| author | Anton Lindqvist <anton.lindqvist@gmail.com> | 2018-07-24 20:38:48 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2018-07-25 08:30:07 +0200 |
| commit | 9182049979da592daf772dcb788ee607d5b0ceb7 (patch) | |
| tree | 81a13d23f5953d6cbed474d6be7ac813424556ed /pkg/csource | |
| parent | a922a2e809ff433bac1a412917872fd23691b7e2 (diff) | |
pkg/csource: remove /bin/bash assumption
OpenBSD and probably other BSDs does not ship with /bin/bash. This particular
script runs fine with regular /bin/sh.
Diffstat (limited to 'pkg/csource')
| -rwxr-xr-x | pkg/csource/gen.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/csource/gen.sh b/pkg/csource/gen.sh index 86961bfb0..6e81a4a32 100755 --- a/pkg/csource/gen.sh +++ b/pkg/csource/gen.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright 2018 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. |
