[Pkg-jed-commit] r487 - jed/trunk/debian

Rafael Laboissiere rafael at alioth.debian.org
Thu Jan 11 15:20:26 CET 2007


Author: rafael
Date: 2007-01-11 15:20:26 +0100 (Thu, 11 Jan 2007)
New Revision: 487

Modified:
   jed/trunk/debian/jed-common.config
Log:
Updated final part of the code according to new style of the file_* variables


Modified: jed/trunk/debian/jed-common.config
===================================================================
--- jed/trunk/debian/jed-common.config	2007-01-11 13:59:41 UTC (rev 486)
+++ jed/trunk/debian/jed-common.config	2007-01-11 14:20:26 UTC (rev 487)
@@ -55,8 +55,9 @@
     db_go
     db_get jed-common/rm-site-defaults
     if [ "$RET" = true ] ; then
-        for n in 0 1 2 3 4 5 ; do
-            eval "rm -f \$file_$n"
+        for n in `seq 1 10` ; do
+            eval "tmp=\$file_$n"
+            rm -f `echo $tmp | cut -d: -f2` 
 	done
     fi    
 fi




More information about the Pkg-jed-commit mailing list