mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 09:37:31 +00:00
12 lines
215 B
Bash
12 lines
215 B
Bash
#!/usr/bin/env bash
|
|
|
|
RED='\033[0;31m'
|
|
BLUE='\033[0,34m'
|
|
NC='\033[0m' # No Color
|
|
function info {
|
|
printf "\r💬 ${BLUE}INFO:${NC} ${1}\n"
|
|
}
|
|
function fail {
|
|
printf "\r🗯 ${RED}ERROR:${NC} ${1}\n"
|
|
exit 1
|
|
}
|