diff options
author | dave%intrec.com <> | 2001-02-27 10:20:55 +0100 |
---|---|---|
committer | dave%intrec.com <> | 2001-02-27 10:20:55 +0100 |
commit | 0a6d0a29f9d21fd22b6f360fbb551dfe5374e66a (patch) | |
tree | 10ed07b69b2cc29b771d065dd86fc293f0072cb2 | |
parent | 5a38e63e132571b38aff54c6605ec9c1d881aba5 (diff) | |
download | bugzilla-0a6d0a29f9d21fd22b6f360fbb551dfe5374e66a.tar.gz bugzilla-0a6d0a29f9d21fd22b6f360fbb551dfe5374e66a.tar.xz |
Fix for bug 50279: a couple executable files were missing from the list of files that checksetup considers executable when it's resetting permissions.
-rwxr-xr-x | checksetup.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 52b012387..2be26451a 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -500,7 +500,8 @@ unlink "data/versioncache"; # # These are the files which need to be marked executable -my @executable_files = ('processmail', 'whineatnews.pl', 'collectstats.pl', 'checksetup.pl', 'syncshadowdb'); +my @executable_files = ('processmail', 'whineatnews.pl', 'collectstats.pl', + 'checksetup.pl', 'syncshadowdb', 'importxml.pl'); # tell me if a file is executable. All CGI files and those in @executable_files # are executable |