Skip to content

Commit 54797f4

Browse files
committed
do not install java
1 parent e985960 commit 54797f4

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/base/.devcontainer/scripts/root_install.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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"
3435
if [ "$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"
4547
if [ "$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"
5659
ASDF_VERSION=$(awk '!/^#/ && NF {print $1; exit}' /tmp/.tool-versions.asdf)
5760
if [ "$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"

src/base/.devcontainer/scripts/vscode_install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ while IFS= read -r version; do
4242
done < /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
5050
while IFS= read -r version; do

0 commit comments

Comments
 (0)