From: Devon H. O'Dell Date: Wed, 2 Dec 2009 03:30:17 +0000 (-0800) Subject: FreeBSD needs #!/usr/bin/env bash (fixes broken build on FreeBSD) X-Git-Tag: weekly.2009-12-07~79 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fd7e1a2d87b8a65aa997aa40f00d941714c51a2b;p=gostls13.git FreeBSD needs #!/usr/bin/env bash (fixes broken build on FreeBSD) R=gri https://golang.org/cl/163067 --- diff --git a/src/cmd/gofmt/test.sh b/src/cmd/gofmt/test.sh index e6e7cea68c..dcfcbbf8b8 100755 --- a/src/cmd/gofmt/test.sh +++ b/src/cmd/gofmt/test.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright 2009 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file.