[Lunar-commits] CVS: theedge/bin lvu,1.50,1.51

Chad Kittel v3rt1g0 at lunar-linux.org
Sun Sep 26 02:01:30 UTC 2004


Update of /var/cvs/lunar/theedge/bin
In directory espresso.foo-projects.org:/tmp/cvs-serv13777

Modified Files:
	lvu 
Log Message:
The error message received when doing 'lvu size AModuleThatIsNotInstalled' 
was not displaying the incorrect module name as intended.  This is because
it was using the wrong variable to get the module name.  Now it should be 
using the right variable.


Index: lvu
===================================================================
RCS file: /var/cvs/lunar/theedge/bin/lvu,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- lvu	24 May 2004 13:20:57 -0000	1.50
+++ lvu	26 Sep 2004 02:01:28 -0000	1.51
@@ -901,7 +901,7 @@
         if module_installed $2 ; then
           find_module_size $2
         else
-          message "${PROBLEM_COLOR}$MODULE not installed${DEFAULT_COLOR}"
+          message "${PROBLEM_COLOR}$2 is not installed${DEFAULT_COLOR}"
         fi
       fi
       ;;



More information about the Lunar-commits mailing list