-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·48 lines (47 loc) · 998 Bytes
/
install.sh
File metadata and controls
executable file
·48 lines (47 loc) · 998 Bytes
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
echo " _____ _ _ "
sleep 0.09
echo "| _ | | | | |"
sleep 0.1
echo "| |_| |_ _____ | | _____| |"
sleep 0.125
echo "| __ | / _ | | | / __ |"
sleep 0.25
echo "| |__| | | |_| | | | | |__| |"
sleep 0.5
echo "|_______| \\__/|_| \\_\\ \\____/|_|"
sleep 1
echo ""
echo "[?] Welcome to the club, dude -_-"
sleep 2
echo "[?] Bald is c++ project building system."
sleep 3
echo "[?] It uses TOML"
sleep 1
echo "[?] Let me install it for you"
sleep 3
echo "[.] First, let's check dependencies"
(g++ --version > /dev/null &&
make --version > /dev/null &&
git --version > /dev/null) &&
(
sleep 3
echo "[!] You have dependencies"
sleep 2
echo "[.] Then, let's clone the repo"
sleep 3
git clone https://github.com/NotBalds/bald
sleep 2
echo "[.] cd..."
cd bald
sleep 2
echo "[.] And run make"
make
sleep 3
echo ""
echo ""
echo ""
echo ""
echo ""
echo ""
echo "[!] Installation finished, read https://github.com/NotBalds/bald/blob/README.md for usage!")
sleep 5