[Lunar-commits] r15333 - lunar-iso/branches/lunar-iso-2.6/scripts

Jaime Buffery nestu at lunar-linux.org
Fri Jun 10 20:14:38 UTC 2005


Author: nestu
Date: 2005-06-10 20:14:37 +0000 (Fri, 10 Jun 2005)
New Revision: 15333

Modified:
   lunar-iso/branches/lunar-iso-2.6/scripts/cachefill
Log:
Integer values should be compared as such

Modified: lunar-iso/branches/lunar-iso-2.6/scripts/cachefill
===================================================================
--- lunar-iso/branches/lunar-iso-2.6/scripts/cachefill	2005-06-10 18:21:00 UTC (rev 15332)
+++ lunar-iso/branches/lunar-iso-2.6/scripts/cachefill	2005-06-10 20:14:37 UTC (rev 15333)
@@ -29,8 +29,9 @@
   done
 done
 
-if [ "$RESULT" == 0 ]; then
+if [ ${RESULT} -eq 0 ]; then
     touch $ISO_TARGET/.cachefill
 fi
+
 exit $RESULT
 



More information about the Lunar-commits mailing list