Add support for venomlinux (#1526)

This commit is contained in:
longpanda
2022-03-22 17:52:56 +08:00
parent 392d8ef4fa
commit 44b38dce74
2 changed files with 8 additions and 1 deletions

View File

@@ -342,6 +342,10 @@ ventoy_get_os_type() {
echo "openEuler"; return
fi
if $GREP -q 'venom' /proc/version; then
echo "arch"; return
fi
echo "default"
}