blob: a1559a29a5c6640e9cc833ebb9485bf1a48eb030 (
plain) (
blame)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
#!/bin/bash
function die() {
tput setaf 1
printf "\n\nInstall failed, successfull steps not reversed.\n"
tput sgr0
exit 1
}
function TPUT() {
if [ -t 1 ]; then
if [ "$1" = "tput" ]; then
shift
fi
tput $@
fi
}
function header() {
TPUT setaf 3
if [ -t 1 ]; then
printf "\n[ ] $1"
else
printf "\n- $1"
fi
TPUT sgr0
}
function commandError() {
trap - 1
cat $1
rm $1
TPUT setaf 1
printf "\n\nInstall failed.\n"
TPUT sgr0
TPUT cnorm
exit 1
}
function spinner() {
i=1
sp="/-\|"
while ps a | awk '{print $1}' | grep -q "$1"; do
TPUT cub $(tput cols)
TPUT cuf 1
printf "${sp:i++%${#sp}:1}"
TPUT cuf $(tput cols)
sleep 0.09
done
TPUT cub $(tput cols)
TPUT cuf 1
}
function execCommand() {
TPUT sc
TPUT setaf 4
if [ -t 1 ]; then
printf " ($1)"
else
printf "\n>> $1 "
fi
TPUT sgr0
log=$(mktemp)
bash -c "$1 > $log 2>&1" &
PID=$!
if [ -t 1 ]; then
spinner $PID
fi
wait $PID
commandSucc=$?
if [ $commandSucc -eq 0 ]; then
TPUT setaf 2
printf "✓"
TPUT sgr0
TPUT rc
TPUT el
else
TPUT setaf 1
printf "x"
TPUT sgr0
TPUT cuf $(tput cols)
printf "\n"
if [ $# -eq 1 ] || [ $2 -eq "0" ]; then
commandError $log
fi
fi
rm $log
}
TPUT civis
|