We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7851db commit 93dd6aaCopy full SHA for 93dd6aa
VERSION
@@ -1 +1 @@
1
-13.00
+13.001
bin/ircd
@@ -1,5 +1,5 @@
#!/usr/bin/perl
2
-# Copyright (c) 2010-16, Mitchell Cooper
+# Copyright (c) 2010-17, Mitchell Cooper
3
use warnings; use strict; use 5.010;
4
foreach ([qw(__WARN__ WARNING)], [qw(TERM terminate )], [qw(KILL terminate)],
5
[qw(INT terminate)], [qw(PIPE signalpipe)], [qw(HUP signalhup)]) {
@@ -9,7 +9,7 @@ BEGIN {
9
defined($run_dir = shift @ARGV) or die "No directory specified";
10
die "Run directory does not exist" unless -d $run_dir;
11
chdir $run_dir or die "Can't access run directory";
12
- foreach (map { "$run_dir/lib$_" } ('', qw(/evented-object/lib
+ foreach ($run_dir, map { "$run_dir/lib$_" } ('', qw(/evented-object/lib
13
/evented-api-engine/lib))) { unshift @INC, $_ }
14
require Evented::API::Engine;
15
}
0 commit comments