Commit 9a0d25b3 authored by TomKellyGenetics's avatar TomKellyGenetics
Browse files

correct link test

parent 694e3476
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -284,7 +284,7 @@ if [[ $verbose == "true" ]]; then
fi
for i in ${!read1[@]}; do
    read=${read1[$i]}
    if [ -h $read ]; then
    if [[ -h $read ]]; then
        path=`readlink -f $read`
        if [[ $verbose == "true" ]]; then
            echo " ***Warning: file $read not in current directory. Path to the file captured instead***"
@@ -363,7 +363,7 @@ if [[ $verbose == "true" ]]; then
fi
for i in ${!read2[@]}; do
    read=${read2[$i]}
    if [ -h $read ]; then
    if [[ -h $read ]]; then
        path=`readlink -f $raed`
        if [[ $verbose == "true" ]]; then
            echo " ***Warning: file $read not in current directory. Path to the file captured instead***"