From b42682ac86f10d88c6f31a40c61f31aae5e7986a Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Fri, 3 Oct 2025 11:26:19 -0500 Subject: [PATCH] fix/Make dev_deploy.sh pass on command-line arguments Using the old command wouldn't pass on arguments to the nested (replacement) call to the scripts/dev_deploy.sh so it always gave an error. --- dev_deploy.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev_deploy.sh b/dev_deploy.sh index ad4e2ccb..c51c6dae 120000 --- a/dev_deploy.sh +++ b/dev_deploy.sh @@ -1 +1,3 @@ -scripts/dev_deploy.sh \ No newline at end of file +#!/usr/bin/env bash + +./scripts/dev_deploy.sh "$@"