Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Ramsey committed Nov 19, 2024
1 parent dbeeb16 commit b7beb28
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup/setup-kg2-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata
# install various other packages used by the build system
# - curl is generally used for HTTP downloads
# - wget is used by the neo4j installation script (some special "--no-check-certificate" mode)
sudo apt-get install -y \
sudo DEBIAN_FRONTEND=noninateractive apt-get install -y \
default-jre \
awscli \
zip \
Expand All @@ -77,7 +77,8 @@ sudo apt-get install -y \
automake \
git \
libssl-dev \
make
make \
jq

sudo debconf-set-selections <<< "mysql-server mysql-server/root_password password ${mysql_password}"
sudo debconf-set-selections <<< "mysql-server mysql-server/root_password_again password ${mysql_password}"
Expand Down Expand Up @@ -157,4 +158,4 @@ setup_kg2_build_part2 >> ${setup_log_file} 2>&1
if [[ "${build_flag}" != "ci" ]]
then
${s3_cp_cmd} ${setup_log_file} s3://${s3_bucket_versioned}/
fi
fi

0 comments on commit b7beb28

Please sign in to comment.