Files
o3de/scripts/build/build_node/Platform/Linux/install-ubuntu.sh
T
2021-06-23 10:55:22 -07:00

45 lines
722 B
Bash
Executable File

#!/bin/bash
# Copyright (c) Contributors to the Open 3D Engine Project
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
#
# This script must be run as root
if [[ $EUID -ne 0 ]]
then
echo "This script must be run as root (sudo)"
exit 1
fi
echo Installing packages and tools for O3DE development
# Install awscli
./install-ubuntu-awscli.sh
if [ $? -ne 0 ]
then
echo Error installing AWSCLI
exit 1
fi
# Install git
./install-ubuntu-git.sh
if [ $? -ne 0 ]
then
echo Error installing Git
exit 1
fi
# Install the necessary build tools
./install-ubuntu-build-tools.sh
if [ $? -ne 0 ]
then
echo Error installing ubuntu tools
exit 1
fi
echo Packages and tools for O3DE setup complete
exit 0