Skip to content

Commit

Permalink
update: ecspresso latest bump to 2.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rhiroe committed Nov 19, 2024
1 parent 2bca1bc commit af6fddc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ecspresso/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ set -a
. ./devcontainer-features.env
set +a

LATEST_ECSPRESSO_VERSION="2.4.3"

architecture="$(uname -m)"
case ${architecture} in
x86_64) architecture="amd64";;
Expand All @@ -20,9 +22,9 @@ case ${architecture} in
esac

if [ "${ECSPRESSOVERSION}" = "latest" ]; then
ECSPRESSO_VERSION="2.4.2"
ECSPRESSO_VERSION=$LATEST_ECSPRESSO_VERSION
else
ECSPRESSO_VERSION="${ECSPRESSOVERSION:-"2.4.2"}"
ECSPRESSO_VERSION="${ECSPRESSOVERSION:-$LATEST_ECSPRESSO_VERSION}"
fi
ECSPRESSO_DOWNLOAD_URL=https://github.com/kayac/ecspresso/releases/download/v${ECSPRESSO_VERSION}/ecspresso_${ECSPRESSO_VERSION}_linux_${architecture}.tar.gz

Expand Down

0 comments on commit af6fddc

Please sign in to comment.