Skip to content

Commit

Permalink
Fix install.sh for versions targs with v prefixed (#2485)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie authored Jan 3, 2024
1 parent 0dbd871 commit cdbf2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ downloadFile() {
TAG=$1
fi
# arduino-lint_0.4.0-rc1_Linux_64bit.[tar.gz, zip]
APPLICATION_DIST_PREFIX="${PROJECT_NAME}_${TAG}_"
APPLICATION_DIST_PREFIX="${PROJECT_NAME}_${TAG#"v"}_"
if [ "$OS" = "Windows" ]; then
APPLICATION_DIST_EXTENSION=".zip"
else
Expand Down

0 comments on commit cdbf2f5

Please sign in to comment.