From 1022e3858e94a808db942b21b781b98c7fe7de01 Mon Sep 17 00:00:00 2001 From: Assaf Morami Date: Thu, 4 Jul 2024 12:47:13 +0300 Subject: [PATCH] chore: add shebang to build.sh to specify bash as the interpreter (#4066) the `[[` command isn't available on e.g. zsh Co-authored-by: Paul Balaji <10051819+paulbalaji@users.noreply.github.com> --- rust/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/build.sh b/rust/build.sh index ab3ebf62b9..65214900b5 100755 --- a/rust/build.sh +++ b/rust/build.sh @@ -1,3 +1,5 @@ +#!/bin/bash + TAG=$1 USE_DEFAULT_PLATFORM=$2 if [[ -z $TAG ]]; then