mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:30:03 +08:00
21 lines
466 B
Bash
21 lines
466 B
Bash
#!/usr/bin/env bash
|
|
|
|
make_ignored() {
|
|
if [ -n "$1" ]
|
|
then
|
|
while read -r lang; do
|
|
if [ "$lang" != "$1" ]
|
|
then
|
|
printf "%s," "$lang"
|
|
fi
|
|
done < <(jq 'keys|@sh' -c lockfile.json)
|
|
fi
|
|
}
|
|
|
|
TO_IGNORE=$(make_ignored $1)
|
|
|
|
SKIP_LOCKFILE_UPDATE_FOR_LANGS="$TO_IGNORE" nvim --headless -c "luafile ./scripts/write-lockfile.lua" -c "q"
|
|
# Pretty print
|
|
cp lockfile.json /tmp/lockfile.json
|
|
cat /tmp/lockfile.json | jq --sort-keys > lockfile.json
|