Skip to content

Commit

Permalink
Try again with addition
Browse files Browse the repository at this point in the history
  • Loading branch information
damies13 committed Feb 22, 2024
1 parent fc04cda commit f5e5c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/Package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
numverparts=($(echo $numver | tr "." "\n"))
len=${#numverparts[@]}
if [ $len -gt 2 ]; then
numver=${numverparts[0]}.${numverparts[1]}.${numverparts[2]+1}
numver=${numverparts[0]}.${numverparts[1]}.$((${numverparts[2]}+1))
elif [ $len -eq 2 ]; then
numver=${numverparts[0]}.${numverparts[1]}.1
else
Expand Down

0 comments on commit f5e5c0d

Please sign in to comment.