From 9182049979da592daf772dcb788ee607d5b0ceb7 Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Tue, 24 Jul 2018 20:38:48 +0200 Subject: 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. --- pkg/csource/gen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/csource') 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. -- cgit mrf-deployment