mirror of
https://github.com/aljazceru/omakub.git
synced 2025-12-18 13:04:21 +01:00
Fix missing a semicolon
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user