From 7c7b15d8864ed29cd94e40d21e7a6d6a69bd54c8 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 9 Jan 2025 12:48:48 +0000 Subject: [PATCH] bin/brew: don't allow unbound variables. This can fail for users using `bash -u` or `set -u` in their shell so let's try to be stricter here for both them and us. --- bin/brew | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/brew b/bin/brew index 294091fe81..faa1fad88d 100755 --- a/bin/brew +++ b/bin/brew @@ -1,4 +1,4 @@ -#!/bin/bash -p +#!/bin/bash -pu set -u # Fail fast with concise message when not using bash