Skip to content

Commit

Permalink
Fixed: Can't locate autoinstaller/Functions.pm in some contexts
Browse files Browse the repository at this point in the history
CS fixes
  • Loading branch information
nuxwin committed May 31, 2017
1 parent edd668d commit 9033db9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion engine/imscp-pkt-mngr
Expand Up @@ -20,7 +20,7 @@
# i-MSCP - internet Multi Server Control Panel. All Rights Reserved

use FindBin;
use lib "$FindBin::Bin";
use lib $FindBin::Bin;
require 'imscp_common_code.pl';

use strict;
Expand Down
2 changes: 1 addition & 1 deletion engine/imscp-sw-mngr
Expand Up @@ -23,7 +23,7 @@
# internet Multi Server Control Panel. All Rights Reserved.

use FindBin;
use lib "$FindBin::Bin";
use lib $FindBin::Bin;
require 'imscp_common_code.pl';

use strict;
Expand Down
2 changes: 1 addition & 1 deletion imscp-autoinstall
Expand Up @@ -36,7 +36,7 @@
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/engine/PerlLib", "$FindBin::Bin/engine/PerlVendor";
use lib $FindBin::Bin, "$FindBin::Bin/engine/PerlLib", "$FindBin::Bin/engine/PerlVendor";
use iMSCP::Debug;
use iMSCP::Requirements;
use iMSCP::Dialog;
Expand Down

0 comments on commit 9033db9

Please sign in to comment.