From a2e62f8b2c5b78bdeb76bc77ebff4bc839cfd3b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Jakub=20Nani=C5=A1ta?= Date: Mon, 8 Jan 2024 11:07:12 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Fix=20default=20parameter=20valu?= =?UTF-8?q?e=20for=20bin/env=20(#164)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/env b/bin/env index bb9d92801..da8ba386a 100755 --- a/bin/env +++ b/bin/env @@ -10,5 +10,5 @@ # (The "." will execute this inside the current shell instead of creating a child one) set -a -source ${1:=.env} +source ${1:-.env} set +a \ No newline at end of file