no message

This commit is contained in:
kuaifan 2024-12-17 20:02:48 +08:00
parent 7fb854fb48
commit d5eb3716aa

2
cmd
View File

@ -330,7 +330,7 @@ https_auto() {
env_get() {
local key=$1
local value=`cat ${cur_path}/.env | grep "^$key=" | awk -F '=' '{print $2}'`
local value=`cat ${cur_path}/.env | grep "^$key=" | awk -F '=' '{print $2}' | tr -d '\r\n'`
echo "$value"
}