From 9edd2a6bac4e16db1532237d77488c6296bde641 Mon Sep 17 00:00:00 2001 From: Alexander David Frick Date: Sat, 25 Jun 2022 11:28:49 -0500 Subject: [PATCH] Update install_deps.sh --- install_deps.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install_deps.sh b/install_deps.sh index 80ee8409..2ec53200 100644 --- a/install_deps.sh +++ b/install_deps.sh @@ -14,6 +14,10 @@ yell() { echo "$0: $*" >&2; } die() { yell "$*"; exit 111; } try() { "$@" || die "${RED}Failed $*"; } +printf "\n" && +printf "${GRE}Script to download all prequisites to build Thorium...\n" && +tput sgr0 && + # Give user a chance to stop if they wish tput setaf 1 && read -p "This script requires git and wget. Press Enter to continue, otherwise use Ctrl+C to stop and install these first." @@ -33,7 +37,7 @@ git clone https://github.com/Alex313031/Thorium.git && # Make Chromium dirs printf "\n" && mkdir -v ~/chromium && -mkdir -v ~/chromium/src +mkdir -v ~/chromium/src && mkdir -v ~/chromium/win && cd $HOME/chromium/win &&