From 079b2246bdd13a09ae90ca450319100f3dfbaa8b Mon Sep 17 00:00:00 2001 From: Sebastian Meiling Date: Mon, 16 Sep 2019 10:23:11 +0200 Subject: [PATCH] tools: fix shebang for static-test.sh Change shebang in static-test.sh from `/bin/bash` to `/usr/bin/env bash` This fixes problems when `bash` is not available in standard location, but e.g. in `/usr/local/bin/` as on FreeBSD. --- dist/tools/static-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/tools/static-tests.sh b/dist/tools/static-tests.sh index c6973fa46b..14db3a24e1 100755 --- a/dist/tools/static-tests.sh +++ b/dist/tools/static-tests.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Copyright (C) 2015 Lucas Jenß #