From 381030ebd3ec4fa9924f79577d29713ceadcd0a5 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Wed, 14 Jul 2021 17:08:30 -0700 Subject: [PATCH] doc/QuickStart.md: replace MODULES with cpanfile This is just a quick temporary edit. I will be rewriting a few of these sections soon. --- doc/QuickStart.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/doc/QuickStart.md b/doc/QuickStart.md index 5e6267b4..c293e926 100644 --- a/doc/QuickStart.md +++ b/doc/QuickStart.md @@ -46,16 +46,12 @@ system's documentation to install it. ### Installing CPAN modules Some of PBot's features depend on the availability of Perl modules written by -third parties. To use such PBot features, the modules listed in the [`MODULES`](../MODULES) +third parties. To use such PBot features, the modules listed in the [`cpanfile`](../cpanfile) file need to be installed. -The modules may be installed with a simple command: +The CPAN modules may be installed with this command: - $ cpan -f -i $(cat MODULES) - -Some CPAN modules may fail to pass certain tests due to outdated variables. -Despite these test failures, their core functionality should still work as -expected. + $ cpanm -n --installdeps . --with-all-features --without-feature compiler_vm_win32 #### re::engine::RE2 PBot uses the `re::engine::RE2` module for user-submitted regular expressions.