From 9f9a140fbc6d955185ee6fcdbc9ebed9d9cd81bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Thu, 27 Feb 2025 13:41:59 +0100 Subject: [PATCH] build(container): avoid forcing shebang MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Let’s let the system decide which binary to use instead of forcing one. For example, on macOS, /bin/bash points to the default bash version, which is 3.2… I think that speaks for itself! :D Signed-off-by: Sébastien Han --- llama_stack/distribution/build_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/distribution/build_container.sh b/llama_stack/distribution/build_container.sh index 08941a538..98c6cd70d 100755 --- a/llama_stack/distribution/build_container.sh +++ b/llama_stack/distribution/build_container.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved.