From b87fe2ebf028084df29b446583c6853132ca15b0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 30 Dec 2025 16:43:04 +0000 Subject: [PATCH] Add quotes to variable expansions in ql.sh Co-authored-by: whyour <22700758+whyour@users.noreply.github.com> --- shell/ql.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/ql.sh b/shell/ql.sh index 8497e27a..51e9a27e 100755 --- a/shell/ql.sh +++ b/shell/ql.sh @@ -5,5 +5,5 @@ if [[ -z "$QL_DIR" ]]; then exit 1 fi -dir_shell=$QL_DIR/shell -. $dir_shell/update.sh "$@" +dir_shell="$QL_DIR/shell" +. "$dir_shell/update.sh" "$@"