# HG changeset patch # User Theodore Dubois # Date 1489194380 28800 # Node ID 7c879d2e9b691669b4f83c8c79b2c7c916274997 # Parent 2cf3fb66285b818eae0be7d5ddd08d27c43f27b5 Use eval on file list command in unix tag updater diff -r 2cf3fb66285b -r 7c879d2e9b69 plat/unix/update_tags.sh --- a/plat/unix/update_tags.sh Tue Feb 21 12:36:45 2017 -0800 +++ b/plat/unix/update_tags.sh Fri Mar 10 17:06:20 2017 -0800 @@ -104,10 +104,10 @@ if [ $INDEX_WHOLE_PROJECT -eq 1 ]; then if [ -n "${FILE_LIST_CMD}" ]; then if [ "${PROJECT_ROOT}" = "." ] || [ $FILE_LIST_CMD_IS_ABSOLUTE -eq 1 ]; then - $FILE_LIST_CMD > "${TAGS_FILE}.files" + eval $FILE_LIST_CMD > "${TAGS_FILE}.files" else # If using a tags cache directory, use absolute paths - $FILE_LIST_CMD | while read -r l; do + eval $FILE_LIST_CMD | while read -r l; do echo "${PROJECT_ROOT%/}/${l}" done > "${TAGS_FILE}.files" fi