summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/release3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/release b/tools/release
index 40a2b40..1a0b245 100755
--- a/tools/release
+++ b/tools/release
@@ -12,7 +12,8 @@ if(!-f "apps/version.h") {
exit;
}
-@files=`find . -name FILES`;
+# -L allows find to follow symbolic links
+@files=`find -L . -name FILES`;
my @entries;