From 7774c3cd1f3337a712bfe05e57f5e8ecfcdbff39 Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Sun, 26 Mar 2017 14:25:00 -0700 Subject: [PATCH] Exclude 'verison' file from packaged modules and themes --- makedist.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makedist.pl b/makedist.pl index 9e77d66b7..ffb538d05 100755 --- a/makedist.pl +++ b/makedist.pl @@ -112,7 +112,7 @@ foreach $m (@mlist) { $f =~ /\.(tar|wbm|wbt)\.gz$/ || $f =~ /\.pyc$/ || $f eq "README.md" || $f =~ /^makemodule.*\.pl$/ || $f eq "linux.sh" || $f eq "freebsd.sh" || - $f eq "LICENCE"); + $f eq "LICENCE" || $f eq "version"); $flist .= " $m/$f"; } closedir(DIR);