From c2ae9820c41da17602d48f9f7f08d0b0dd50a361 Mon Sep 17 00:00:00 2001 From: Jaime Melis Date: Thu, 29 Mar 2012 18:02:07 +0200 Subject: [PATCH] Fix bug in tm_mad/shared/mvds --- src/tm_mad/shared/mvds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tm_mad/shared/mvds b/src/tm_mad/shared/mvds index 72518d5d41..94a8214662 100755 --- a/src/tm_mad/shared/mvds +++ b/src/tm_mad/shared/mvds @@ -53,7 +53,7 @@ umask 0007 SRC_READLN=\$($READLINK -f $SRC_PATH) DST_READLN=\$($READLINK -f $DST_PATH) -if [ \( -L $SRC \) -a \( "\$SRC_READLN" = "\$DST_READLN" \) ] ; then +if [ \( -L $SRC_PATH \) -a \( "\$SRC_READLN" = "\$DST_READLN" \) ] ; then echo "Not moving files to image repo, they are the same" else mv -f $SRC_PATH $DST_PATH