From badadcba8c9d12717fd1572ae523749bebe38d50 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Sun, 2 May 2021 14:38:44 +0200 Subject: [PATCH] Do not prepend 'v' before target Git tag This change updates an issue with the update script that not the actual tag was fetched, but that the character 'v' was prepended before the target Git tag. --- scripts/update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update.sh b/scripts/update.sh index 0fa2075..52f1b27 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -39,7 +39,7 @@ done # Fetch from Git repository echo "Fetching $LINUX_TAG from Linux Git repository..." -git --git-dir $LINUX_REPOSITORY/.git fetch origin --depth 1 v$LINUX_TAG +git --git-dir $LINUX_REPOSITORY/.git fetch origin --depth 1 $LINUX_TAG git --git-dir $LINUX_REPOSITORY/.git checkout FETCH_HEAD if [[ -z "$LINUX_VERSION" ]]; then