We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be14e01 commit e8c67b8Copy full SHA for e8c67b8
udroid/src/udroid.sh
@@ -22,6 +22,7 @@ export distro_data
22
23
DIE() { echo -e "${@}"; exit 1 ;:;}
24
GWARN() { echo -e "\e[90m${*}\e[0m";:;}
25
+WARN() { echo -e "[WARN]: ${*}\e[0m";:;}
26
INFO() { echo -e "\e[32m${*}\e[0m";:;}
27
TITLE() { echo -e "\e[100m${*}\e[0m";:;}
28
@@ -204,7 +205,7 @@ install() {
204
205
if verify_integrity "$DLCACHE/$name.tar.$ext" "$shasum"; then
206
LOG "file integrity check passed"
207
else
- GWARN "file integrity check failed"
208
+ WARN "file integrity check failed"
209
if $no_check_integrity; then
210
GWARN "skipping integrity check"
211
0 commit comments