Update create_lxc.sh

This commit is contained in:
tteckster 2022-04-16 09:59:57 -04:00 committed by GitHub
parent 102fbc3ce8
commit 054b207ffe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -16,12 +16,12 @@ BFR="\\r\\033[K"
HOLD="[-]"
trap die ERR
msg_info() {
function msg_info() {
local msg="$1"
echo -ne " ${HOLD} ${YW}${msg}..."
}
msg_ok() {
function msg_ok() {
local msg="$1"
echo -e "${BFR} ${CM} ${GN}${msg}${CL}"
}