[Lunar-commits] r15954 - lunar/trunk/var/lib/lunar/functions

Terry Chan tchan at lunar-linux.org
Sun Jul 31 14:35:04 UTC 2005


Author: tchan
Date: 2005-07-31 14:35:02 +0000 (Sun, 31 Jul 2005)
New Revision: 15954

Modified:
   lunar/trunk/var/lib/lunar/functions/tracking.lunar
Log:
Fixing the bug that Florin reported about filenames with spaces in them.
sofar was missing a pair of quote marks.


Modified: lunar/trunk/var/lib/lunar/functions/tracking.lunar
===================================================================
--- lunar/trunk/var/lib/lunar/functions/tracking.lunar	2005-07-31 13:40:27 UTC (rev 15953)
+++ lunar/trunk/var/lib/lunar/functions/tracking.lunar	2005-07-31 14:35:02 UTC (rev 15954)
@@ -100,7 +100,7 @@
   message "${MESSAGE_COLOR}Creating ${FILE_COLOR}$MD5SUM_LOGS/$MODULE-$VERSION${DEFAULT_COLOR}"
 
   files < $INSTALL_LOGS/$MODULE-$VERSION | while read FILE ; do
-    md5sum $FILE >> $MD5SUM_LOGS/$MODULE-$VERSION
+    md5sum "$FILE" >> $MD5SUM_LOGS/$MODULE-$VERSION
   done
 
 }



More information about the Lunar-commits mailing list