From edbaf11e94aa603085a5fa61aa760595c5392bca Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 23 Feb 2022 15:50:03 +0100 Subject: [PATCH] tree-sitter: unquote latest version in update script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise if a tag was found it would try to fetch `refs/tag/"v1.2.0"`. ``` fetching list of grammars checking the tree-sitter repo list against the grammars we know writing files to /etc/nixos/nixpkgs/pkgs/development/tools/parsing/tree-sitter/grammars Fetching latest release ("v1.2.1") of tree-sitter-agda … Initialized empty Git repository in /tmp/git-checkout-tmp-RU9DUpjM/tree-sitter-agda/.git/ fatal: couldn't find remote ref refs/tags/"v1.2.1" From https://github.com/tree-sitter/tree-sitter-agda * branch HEAD -> FETCH_HEAD fatal: Not a valid object name Unrecognized git object type: Unable to checkout refs/tags/"v1.2.1" from https://github.com/tree-sitter/tree-sitter-agda. ``` --- pkgs/development/tools/parsing/tree-sitter/update.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/parsing/tree-sitter/update.nix b/pkgs/development/tools/parsing/tree-sitter/update.nix index 96b5e47316c7..961a5e96e0b5 100644 --- a/pkgs/development/tools/parsing/tree-sitter/update.nix +++ b/pkgs/development/tools/parsing/tree-sitter/update.nix @@ -380,7 +380,7 @@ let if [[ "$(printf "%s" "$res" | ${jq}/bin/jq '.message?')" =~ "rate limit" ]]; then echo "rate limited" >&2 fi - release="$(printf "%s" "$res" | ${jq}/bin/jq -r '.tag_name')" + release="$(printf "%s" "$res" | ${jq}/bin/jq -r '.tag_name' | tr -d \")" # github sometimes returns an empty list even tough there are releases if [ "$release" = "null" ]; then echo "uh-oh, latest for ${orga + "/" + repo} is not there, using HEAD" >&2