Skip to content

Commit

Permalink
7.2.0
Browse files Browse the repository at this point in the history
New version script
  • Loading branch information
olofhagsand committed Oct 28, 2024
1 parent d1e31ec commit 22a2ecb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions scripts/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ if [ -n "$PREFIX" ]; then
fi
V="${V}${TAG}"
V="${V}-${INDEX}"
V="${V}+${NR}"
V="${V}+${HASH}"
if [ -n "${NR}" ]; then
V="${V}+${NR}"
fi
if [ -n "${HASH}" ]; then
V="${V}+${HASH}"
fi
if [ -n "$ARCH" ]; then
V="${V}_${ARCH}"
fi
Expand Down

0 comments on commit 22a2ecb

Please sign in to comment.