3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-19 10:29:30 +01:00

pbot: improve reliability of finding bothome

This commit is contained in:
Pragmatic Software 2020-09-20 20:15:59 -07:00
parent 5709678069
commit 0ba109b594

17
pbot
View File

@ -4,21 +4,16 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this # License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
# bothome is automatically set by this script, do not modify use FindBin qw($RealBin);
my $bothome; use lib "$RealBin/.";
BEGIN {
use File::Basename;
$bothome = -l __FILE__ ? dirname readlink __FILE__ : dirname __FILE__;
unshift @INC, $bothome;
}
# configuration is overridden via command-line arguments, do not modify # configuration is overridden via command-line arguments, do not modify
# see doc/QuickStart.md # see doc/QuickStart.md
my %config = ( my %config = (
data_dir => "$bothome/data", data_dir => "$RealBin/data",
module_dir => "$bothome/modules", module_dir => "$RealBin/modules",
plugin_dir => "$bothome/Plugins", plugin_dir => "$RealBin/Plugins",
update_dir => "$bothome/updates", update_dir => "$RealBin/updates",
); );
use PBot::PBot; use PBot::PBot;