changeset 1224:f0d7f84ec51a

Dereference symlink path segments in record-commands.sh.
author Rob Landley <rob@landley.net>
date Mon, 23 Aug 2010 00:27:44 -0500
parents db3b0244a49e
children 39fda120621c
files sources/utility_functions.sh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/sources/utility_functions.sh	Mon Aug 23 00:26:48 2010 -0500
+++ b/sources/utility_functions.sh	Mon Aug 23 00:27:44 2010 -0500
@@ -156,7 +156,7 @@
 
   echo "$1" | sed 's/:/\n/g' | while read DIR
   do
-    find "$DIR" -maxdepth 1 -mindepth 1 -name "$2" | sed 's@.*/@@' | \
+    find "$DIR/" -maxdepth 1 -mindepth 1 -name "$2" | sed 's@.*/@@' | \
     while read FILE
     do
       eval "$3"