From 4fd277d00645d22d641b6e799b99142634bf4cd7 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Tue, 26 Aug 2008 22:14:28 +0200 Subject: [PATCH] sde-download: Enhanced altdir support to follow symlinks --- bin/sde-download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sde-download b/bin/sde-download index 0aaa8d5..d0c67ce 100755 --- a/bin/sde-download +++ b/bin/sde-download @@ -321,7 +321,7 @@ download_file() { # Alternative Directory # if [ "$altdir" ] ; then - altfile=$(find $altdir/ -name `basename $bzfile` | head -n 1) + altfile=$(find -L "$altdir/" -name `basename $bzfile` | head -n 1) else altfile= fi