From 0ebb861bdf6ae9d70d74a2dc23c0573bb4c1b44a Mon Sep 17 00:00:00 2001 From: aoife cassidy Date: Fri, 26 Jan 2024 01:49:36 +0200 Subject: [PATCH] Replace /bin/bash with env call (#2409) Fixes build on FreeBSD, which uses /usr/local/bin/bash, and also is just a more idiomatic way to handle shells. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 3109ddc38..7511dba3b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright 2023 LiveKit, Inc. # # Licensed under the Apache License, Version 2.0 (the "License");