Skip to content

Commit

Permalink
Update build scripts for Perl update.
Browse files Browse the repository at this point in the history
This is copied from psychonic's SourceMod fixes.
  • Loading branch information
dvander committed Jan 18, 2023
1 parent ff2b514 commit 0f9ec96
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions support/buildbot/bootstrap.pl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
my ($myself, $path) = fileparse($0);
chdir($path);

use FindBin;
use lib $FindBin::Bin;
require 'helpers.pm';

#Go back above build dir
Expand Down
4 changes: 3 additions & 1 deletion support/buildbot/package.pl
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
my ($myself, $path) = fileparse($0);
chdir($path);

use FindBin;
use lib $FindBin::Bin;
require 'helpers.pm';

my ($version);
Expand Down Expand Up @@ -155,4 +157,4 @@

print "Files sent to drop site -- build succeeded.\n";

exit(0);
exit(0);
2 changes: 2 additions & 0 deletions support/buildbot/startbuild.pl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
my ($myself, $path) = fileparse($0);
chdir($path);

use FindBin;
use lib $FindBin::Bin;
require 'helpers.pm';

chdir('../../../OUTPUT');
Expand Down

0 comments on commit 0f9ec96

Please sign in to comment.