-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall_cargo.sh
executable file
·51 lines (42 loc) · 1.6 KB
/
install_cargo.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
if ! test -f checks/check_system.sh; then
eval "$(curl -fsSL https://raw.githubusercontent.com/excited-bore/dotfiles/main/checks/check_system.sh)"
else
. ./checks/check_system.sh
fi
#if ! test -f checks/check_envvar.sh; then
# eval "$(curl -fsSL https://raw.githubusercontent.com/excited-bore/dotfiles/main/checks/check_envvar.sh)"
#else
# . ./checks/check_envvar.sh
#fi
if ! type update-system &> /dev/null; then
if ! test -f aliases/.bash_aliases.d/update-system.sh; then
eval "$(curl -fsSL https://raw.githubusercontent.com/excited-bore/dotfiles/main/aliases/.bash_aliases.d/update-system.sh)"
else
. ./aliases/.bash_aliases.d/update-system.sh
fi
fi
if test -z $SYSTEM_UPDATED; then
readyn -Y "CYAN" -p "Update system?" updatesysm
if test $updatesysm == "y"; then
update-system
fi
fi
if ! type cargo &> /dev/null; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
fi
#if ! type cargo &> /dev/null; then
# if test $distro_base == "Debian"; then
# eval "$pac_ins cargo"
# elif test $distro_base == "Arch"; then
# eval "$pac_ins cargo"
# elif test $distro == 'Fedora'; then
# eval "$pac_ins cargo"
# fi
#fi
if ! grep -q "# RUST" $ENVVAR; then
printf "# RUST\ntest -d ~/.cargo/bin && export PATH=\$PATH:~/.cargo/bin\n" >> $ENVVAR
fi
echo "This next $(tput setaf 1)sudo$(tput sgr0) will set envvar for cargo in $ENVVAR_R";
if ! sudo grep -q "# RUST" $ENVVAR_R; then
printf "# RUST\ntest -d ~/.cargo/bin && export PATH=\$PATH:~/.cargo/bin\n" | sudo tee -a $ENVVAR_R &> /dev/null
fi