diff options
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/clone_stage4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/clone_stage4 b/scripts/clone_stage4 index 2704db02..9691c609 100755 --- a/scripts/clone_stage4 +++ b/scripts/clone_stage4 @@ -46,7 +46,7 @@ done echo "## From cloned $2 of $1" >> "$EXCLUDE" # this next command lists all files found in BASE_DIR and removes the prefix BASE_DIR IFS=$'\n' -for FILE in $(find "${BASE_DIR}" -type f | cut -c $[${#BASE_DIR} + 1]-); do +for FILE in $(find "${BASE_DIR}" -type f -or -type l | cut -c $[${#BASE_DIR} + 1]-); do echo "- $FILE" >> "$EXCLUDE" done unset IFS |
