From cd6e0ff446b1281ef0b9f74e266cb0eec881b4cd Mon Sep 17 00:00:00 2001 From: Muhammet Yazici <44066377+mtyazici@users.noreply.github.com> Date: Fri, 8 Sep 2023 16:51:27 +0300 Subject: [PATCH] Fix error in update_rc function (#373) --- extras/unix/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/unix/install.sh b/extras/unix/install.sh index a42842d6..f7a28d2a 100644 --- a/extras/unix/install.sh +++ b/extras/unix/install.sh @@ -180,7 +180,7 @@ fi return fi local text - text=$(cat "$path" | grep "$installed") + text="$(cat "$path" | grep "$installed")" if [[ "$text" != "" ]]; then # CLC PATH is already exported in this file log_debug "CLC PATH is already installed in $path"