File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
src/base/.devcontainer/scripts Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ apt-get -y install --no-install-recommends htop vim curl git build-essential \
3131
3232# install aws stuff
3333# Download correct AWS CLI for arch
34+ echo " Installing aws cli"
3435if [ " $TARGETARCH " = " arm64" ] || [ " $TARGETARCH " == " aarch64" ]; then
3536 wget -O /tmp/awscliv2.zip --no-verbose " https://awscli.amazonaws.com/awscli-exe-linux-aarch64.zip"
3637 else
@@ -42,6 +43,7 @@ if [ "$TARGETARCH" = "arm64" ] || [ "$TARGETARCH" == "aarch64" ]; then
4243 rm -rf /tmp/aws-cli
4344
4445# Download correct SAM CLI for arch
46+ echo " Installing aws-sam cli"
4547if [ " $TARGETARCH " = " arm64" ] || [ " $TARGETARCH " = " aarch64" ]; then
4648 wget -O /tmp/aws-sam-cli.zip --no-verbose " https://github.com/aws/aws-sam-cli/releases/latest/download/aws-sam-cli-linux-arm64.zip"
4749 else
@@ -53,6 +55,7 @@ if [ "$TARGETARCH" = "arm64" ] || [ "$TARGETARCH" = "aarch64" ]; then
5355 rm -rf /tmp/aws-sam-cli
5456
5557# Install ASDF
58+ echo " Installing asdf"
5659ASDF_VERSION=$( awk ' !/^#/ && NF {print $1; exit}' /tmp/.tool-versions.asdf)
5760if [ " $TARGETARCH " = " arm64" ] || [ " $TARGETARCH " == " aarch64" ]; then
5861 wget -O /tmp/asdf.tar.gz --no-verbose " https://github.com/asdf-vm/asdf/releases/download/v${ASDF_VERSION} /asdf-v${ASDF_VERSION} -linux-arm64.tar.gz"
Original file line number Diff line number Diff line change @@ -42,9 +42,9 @@ while IFS= read -r version; do
4242done < /tmp/python-versions.txt
4343
4444# Read Java versions from file and install
45- while IFS= read -r version; do
46- asdf install java " $version "
47- done < /tmp/java-versions.txt
45+ # while IFS= read -r version; do
46+ # asdf install java "$version"
47+ # done < /tmp/java-versions.txt
4848
4949# Read Terraform versions from file and install
5050while IFS= read -r version; do
You can’t perform that action at this time.
0 commit comments