[Pkg-jed-commit] r362 - in jed: branches/0.99.19 trunk/debian

Jörg Sommer jo-guest at costa.debian.org
Sun Aug 13 13:57:25 UTC 2006


Author: jo-guest
Date: 2006-08-13 13:57:20 +0000 (Sun, 13 Aug 2006)
New Revision: 362

Modified:
   jed/branches/0.99.19/jed-common.preinst
   jed/trunk/debian/jed-common.preinst
Log:
* I've used a wrong character (an utf8 character) in the argument of if.


Modified: jed/branches/0.99.19/jed-common.preinst
===================================================================
--- jed/branches/0.99.19/jed-common.preinst	2006-08-12 15:22:42 UTC (rev 361)
+++ jed/branches/0.99.19/jed-common.preinst	2006-08-13 13:57:20 UTC (rev 362)
@@ -21,7 +21,7 @@
         prompt=false
         for i in 0 1 2 3; do
             eval "file=\$file_$i; md5sum=\$md5sum_$i"
-            if [ ‐e $file ]; then
+            if [ -e $file ]; then
                 if echo "$md5sum   $file" | md5sum ‐c >/dev/null 2>&1; then
                     prompt=true
                 else

Modified: jed/trunk/debian/jed-common.preinst
===================================================================
--- jed/trunk/debian/jed-common.preinst	2006-08-12 15:22:42 UTC (rev 361)
+++ jed/trunk/debian/jed-common.preinst	2006-08-13 13:57:20 UTC (rev 362)
@@ -21,7 +21,7 @@
         prompt=false
         for i in 0 1 2 3; do
             eval "file=\$file_$i; md5sum=\$md5sum_$i"
-            if [ ‐e $file ]; then
+            if [ -e $file ]; then
                 if echo "$md5sum   $file" | md5sum ‐c >/dev/null 2>&1; then
                     prompt=true
                 else




More information about the Pkg-jed-commit mailing list