diff options
Diffstat (limited to 'createlinks')
-rwxr-xr-x | createlinks | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/createlinks b/createlinks index 1295093..f254e5b 100755 --- a/createlinks +++ b/createlinks @@ -53,8 +53,12 @@ generate_links() { # create file lists for pkg in "$target/$repodir"/*.pkg.tar.?z; do + # not a file or symlink to file [[ -f $pkg ]] || continue + # skip -any packages + [[ $pkg = *-any.pkg.tar.?z ]] && continue + create_file_list "$pkg" if (( $? != 0 )); then cached=false |