Skip to content

Commit

Permalink
Do not prepend 'v' before target Git tag
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
fabianishere committed May 2, 2021
1 parent fcea732 commit badadcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit badadcb

Please sign in to comment.