commit | d1e2ce291897853eb04cf0d112a92471ed73e90d | [log] [tgz] |
---|---|---|
author | Daniel Stenberg <daniel@haxx.se> | Tue Jan 16 22:59:25 2007 +0000 |
committer | Daniel Stenberg <daniel@haxx.se> | Tue Jan 16 22:59:25 2007 +0000 |
tree | b8102c42c217097e6c8d074a1c7457b95ad1f1ba | |
parent | 46b9f98d3bd5c1ef2e4369202399cb5c59ba866a [diff] |
allow find to follow symbolic links (mostly since the server is using that a lot) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12032 a1c6a512-1295-4272-9138-f99709370657
diff --git a/tools/release b/tools/release index 40a2b40..1a0b245 100755 --- a/tools/release +++ b/tools/release
@@ -12,7 +12,8 @@ exit; } -@files=`find . -name FILES`; +# -L allows find to follow symbolic links +@files=`find -L . -name FILES`; my @entries;