diff options
author | Byron Jones <glob@mozilla.com> | 2014-05-14 07:24:47 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-05-14 07:24:47 +0200 |
commit | fca0b6cb7133f458352bd8547195f7f0822766f8 (patch) | |
tree | 04dc44bc5b59fc0d79e3a03e768d81017093a3c6 | |
parent | 52b113cc1a6a208744ec92ad1b2c91d463ff9202 (diff) | |
download | bugzilla-fca0b6cb7133f458352bd8547195f7f0822766f8.tar.gz bugzilla-fca0b6cb7133f458352bd8547195f7f0822766f8.tar.xz |
Bug 1006288: add File::Slurp to the list of mandatory modules
r=dkl, a=glob
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 74cbd82b4..f1071564d 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -162,6 +162,11 @@ sub REQUIRED_MODULES { module => 'Math::Random::ISAAC', version => '1.0.1', }, + { + package => 'File-Slurp', + module => 'File::Slurp', + version => '9999.13', + }, ); if (ON_WINDOWS) { |