Skip to content

Commit

Permalink
Fix error in update_rc function (hazelcast#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtyazici authored Sep 8, 2023
1 parent b0ee81d commit cd6e0ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/unix/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit cd6e0ff

Please sign in to comment.