Skip to content

Commit

Permalink
release: 0.2.3 with FDMM 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzwa committed Jul 18, 2023
1 parent 1221629 commit a217a4b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export DIST_NAME=MonsterPi
export DIST_VERSION=0.2.2
export DIST_VERSION=0.2.3

export BASE_DISTRO=ubuntu
export BASE_ARCH=aarch64
Expand Down
2 changes: 1 addition & 1 deletion src/modules/monsterpi/config
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
[ -n "$MONSTERPI_INCLUDE_HAPROXY" ] || MONSTERPI_INCLUDE_HAPROXY=yes

# FDM Monster version
[ -n "$MONSTERPI_FDMMONSTER_VERSION" ] || MONSTERPI_FDMMONSTER_VERSION=1.4.0
[ -n "$MONSTERPI_FDMMONSTER_VERSION" ] || MONSTERPI_FDMMONSTER_VERSION=1.4.5
3 changes: 2 additions & 1 deletion src/modules/monsterpi/start_chroot_script
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ repo_url="https://github.com/${org}/${repo}"
# Fetch latest release of FDM Monster
if [ -z ${MONSTERPI_FDMMONSTER_VERSION+x} ]
then
# This will not download RC or unstable versions due to the x.y.z grep regex filter
tag=$(git ls-remote --tags $repo_url | awk -F"/" '{print $NF}' | grep -E "^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+$" | sort -V | tail -1)
echo "Git tag loaded $tag"
else
else
tag=${MONSTERPI_FDMMONSTER_VERSION}
echo "Preset tag used $tag"
fi
Expand Down

0 comments on commit a217a4b

Please sign in to comment.