From 4a5484eaf1da7b2f81ac94110331730dd9f7472d Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Mon, 20 Aug 2018 22:01:27 -0700 Subject: [PATCH] Bash is not guaranteed to be in /usr/pkg/bin/bash. On my FreeBSD 11 VM, it's the standard FreeBSD package, which installs it in /usr/local/bin/bash. Change-Id: Ic6427a88efd963de8909a2d333c2c3bf8586e559 Reviewed-on: https://code.wireshark.org/review/29211 Reviewed-by: Guy Harris --- tools/bsd-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bsd-setup.sh b/tools/bsd-setup.sh index b35ba5ff60..0b409b7524 100755 --- a/tools/bsd-setup.sh +++ b/tools/bsd-setup.sh @@ -1,4 +1,4 @@ -#!/usr/pkg/bin/bash +#!/usr/bin/env bash # Setup development environment on BSD-like platforms. # # Tested on: FreeBSD, OpenBSD, NetBSD.