plugins/mod_version.lua

changeset 3420
9be46a3466ef
parent 2923
b7049746bd29
child 3421
d3852a4d37e2
--- a/plugins/mod_version.lua	Sat Jul 31 11:30:16 2010 +0100
+++ b/plugins/mod_version.lua	Sun Aug 01 15:56:52 2010 +0200
@@ -16,7 +16,7 @@
 	if os.getenv("WINDIR") then
 		version = "Windows";
 	else
-		local uname = io.popen("uname");
+		local uname = io.popen(module:get_option("os_version_command") or "uname");
 		if uname then
 			version = uname:read("*a");
 		else

mercurial