From 788308fb05a56708912b8a65189b678936c2bd09 Mon Sep 17 00:00:00 2001 From: tch69 <44942508+TCH69@users.noreply.github.com> Date: Mon, 18 Jan 2021 02:51:21 +0700 Subject: [PATCH] Using /usr/bin/env bash instead of /bin/bash (#307) /bin/bash" makes the script Linux-specific, so change it to "/usr/bin/env bash" --- scripts/unix_debug_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/unix_debug_build.sh b/scripts/unix_debug_build.sh index 45f512e4..7360e4f5 100755 --- a/scripts/unix_debug_build.sh +++ b/scripts/unix_debug_build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash CLEAN_BUILD=0; MAKE_ARGS="";