From 48554f8c666eb68bea39b31fcb75b1a690e0c58b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szczepan=20=C4=86wikli=C5=84ski?= Date: Sat, 30 Oct 2021 16:07:18 +0200 Subject: [PATCH] Fix Bash shebang for scripts (#12120) --- run-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-build.sh b/run-build.sh index 7b98aedc0..3c9b27485 100755 --- a/run-build.sh +++ b/run-build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Copyright (c) .NET Foundation and contributors. All rights reserved. # Licensed under the MIT license. See LICENSE file in the project root for full license information.