Compare commits

...

2 Commits

Author SHA1 Message Date
8e107dca70
Merge 7c62359ecf into 483f7fd7f3 2024-04-26 13:44:27 +00:00
7c62359ecf fix(common.sh): get_os_type and get_linux_dist 2024-04-26 21:44:20 +08:00

View File

@ -190,7 +190,7 @@ apost_beacon()
get_os_type()
{
test -z "$DFS_OS_TYPE" || ( echo "$DFS_OS_TYPE"; return )
test -z "$DFS_OS_TYPE" || { echo "$DFS_OS_TYPE"; return; }
local ans="unknown"
case "$(uname -s)" in
Darwin*) ans="MacOS";;
@ -205,7 +205,7 @@ get_os_type()
get_linux_dist()
{
test -z "$DFS_LINUX_DIST" || ( echo "$DFS_LINUX_DIST"; return )
test -z "$DFS_LINUX_DIST" || { echo "$DFS_LINUX_DIST"; return; }
local ans="unknown"
if [ -f /etc/os-release ]; then
. /etc/os-release