chore(nix): fix newline in middle of jq command

This commit is contained in:
Erica Marigold 2025-02-16 17:11:45 +05:30
parent 89c986a3d8
commit 3a9590a8a3
Signed by: DevComp
SSH key fingerprint: SHA256:jD3oMT4WL3WHPJQbrjC3l5feNCnkv7ndW8nYaHX5wFw

View file

@ -70,8 +70,7 @@ let
#!/bin/bash
set -euo pipefail
version=$(toml2json $src | jq -r '.graph | with_entries(select(.key | test("^${package}"))) | to_entries[0].key | capture("(@(?<ve
rsion>[^ ]+))") | .version')
version=$(toml2json $src | jq -r '.graph | with_entries(select(.key | test("^${package}"))) | to_entries[0].key | capture("(@(?<version>[^ ]+))") | .version')
if [[ "${exeName}" = "stylua" ]]; then
# Special case for stylua which has versions that start with `v`
version="v$version"