Enable .target.txt files
diff --git a/functions/rsync.sh b/functions/rsync.sh
index b221f47..83534a2 100644
--- a/functions/rsync.sh
+++ b/functions/rsync.sh
@@ -116,11 +116,11 @@
rsync -vl "$SYMLINK_FILE" "${RSYNCPATH}"
rm "$SYMLINK_FILE"
-# # Make text file for dereference symlinks
-# local TARGET_TXT_FILE=$(mktemp)
-# echo "$LINKDEST" > "$TARGET_TXT_FILE"
-# rsync -vl "$TARGET_TXT_FILE" "${RSYNCHOST}/${LINKNAME}.target.txt"
-# rm "$TARGET_TXT_FILE"
+ # Make text file for dereference symlinks
+ local TARGET_TXT_FILE=$(mktemp)
+ echo "$LINKDEST" > "$TARGET_TXT_FILE"
+ rsync -vl "$TARGET_TXT_FILE" "${RSYNCPATH}.target.txt"
+ rm "$TARGET_TXT_FILE"
}
#######################################################