mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-10 11:57:48 -03:00
Update install_deps.sh
This commit is contained in:
parent
c312e3dd6c
commit
9edd2a6bac
1 changed files with 5 additions and 1 deletions
|
@ -14,6 +14,10 @@ yell() { echo "$0: $*" >&2; }
|
||||||
die() { yell "$*"; exit 111; }
|
die() { yell "$*"; exit 111; }
|
||||||
try() { "$@" || die "${RED}Failed $*"; }
|
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
|
# Give user a chance to stop if they wish
|
||||||
tput setaf 1 &&
|
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."
|
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
|
# Make Chromium dirs
|
||||||
printf "\n" &&
|
printf "\n" &&
|
||||||
mkdir -v ~/chromium &&
|
mkdir -v ~/chromium &&
|
||||||
mkdir -v ~/chromium/src
|
mkdir -v ~/chromium/src &&
|
||||||
mkdir -v ~/chromium/win &&
|
mkdir -v ~/chromium/win &&
|
||||||
cd $HOME/chromium/win &&
|
cd $HOME/chromium/win &&
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue