-
Notifications
You must be signed in to change notification settings - Fork 6
/
darkmod-util.sh
102 lines (92 loc) · 1.91 KB
/
darkmod-util.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
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
97
98
99
100
101
102
#####################################################################
# #
# This file is not intended to be used on its own it is #
# Intended to be sourced in build-darkmod.sh and clean-darkmod.sh #
# #
#####################################################################
GREEN="\033[01;32m"
YELLOW="\033[01;33m"
RED="\033[01;31m"
BLUE="\033[01;34m"
NONE="\033[00m"
colorize() {
local FIRST="$1"
shift
echo -e "$SPACES${COLOR}$FIRST${NONE}$*"
}
success() {
local COLOR="$GREEN"
colorize "$@"
}
warn() {
local COLOR="$YELLOW"
colorize "$@"
}
error() {
local COLOR="$RED"
colorize "$@"
return 1
}
inform() {
local COLOR="$BLUE"
colorize "$@"
return 0
}
report_on_error() {
if [ "$DEBUG" ]; then
"$@"
return
fi
OUTPUT="$("$@" 2>&1)"
if [ $? -ne 0 ]; then
error "Failed command: "
for i in "$@"; do
(
set -- $i
[ "$2" ]
)
if [ $? -eq 0 ]; then
echo -n "'$i' "
else
echo -n "$i "
fi
done
echo
error "$OUTPUT"
false
fi
}
warn_on_error() {
if [ "$DEBUG" ]; then
"$@"
return
fi
OUTPUT="$("$@" 2>&1)"
if [ $? -ne 0 ]; then
error "Failed command: "
for i in "$@"; do
(
set -- $i
[ "$2" ]
)
if [ $? -eq 0 ]; then
echo -n "'$i' "
else
echo -n "$i "
fi
done
echo
warn "$OUTPUT"
false
fi
}
clean_dir() {
if [[ -d "$@" ]]; then
report_on_error rm -rf "$@"
fi
}
clean_file() {
if [[ -f "$@" ]]; then
report_on_error rm -f "$@"
fi
}