Fix missing a semicolon

This commit is contained in:
Tony Messias
2025-02-05 12:02:00 -03:00
parent 5cab585244
commit 47f627e5fd

View File

@@ -15,7 +15,7 @@ enable_lazyvim_extras() {
extras_json="[${extras_json%,}]"
# This is cheating to mimic an in-place editing of files (without a tmp file)...
{ rm "$config_file" && jq --argjson extras "$extras_json" '.extras |= (. + $extras | unique)' >"$config_file" } <"$config_file"
{ rm "$config_file" && jq --argjson extras "$extras_json" '.extras |= (. + $extras | unique)' >"$config_file"; } <"$config_file"
}
if [[ -n "$languages" ]]; then