classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] FYI: Use correct find path in copy-vmresources.sh


From: Mark Wielaard
Subject: [cp-patches] FYI: Use correct find path in copy-vmresources.sh
Date: Sat, 17 Dec 2005 23:56:06 +0100

Hi,

copy-vmresources.sh would use the wrong find path after cd-ing into the
target directory. This fixes that:

2005-12-17  Mark Wielaard  <address@hidden>

    * lib/copy-vmresources.sh.in: Use dot '.' for find after changing
    dir to target directory.


Committed,

Mark

diff -u -r1.3 copy-vmresources.sh.in
--- lib/copy-vmresources.sh.in  11 Dec 2005 13:14:05 -0000      1.3
+++ lib/copy-vmresources.sh.in  17 Dec 2005 22:53:22 -0000
@@ -21,7 +21,7 @@
        fi;

        (cd ${p};
-         resfiles=`find ${p} -name "*.properties"`
+         resfiles=`find . -name "*.properties"`
          resdirs=
          for i in ${resfiles}; do
                  a=`basename ${i}`;

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

[Prev in Thread] Current Thread [Next in Thread]