3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-12-23 03:02:47 +01:00

Updated version, removed -I from google search script shebang

This commit is contained in:
Pragmatic Software 2011-12-11 18:29:55 +00:00
parent 5e0ac12020
commit 7ddf495f58
2 changed files with 6 additions and 4 deletions

View File

@ -13,8 +13,8 @@ use warnings;
# These are set automatically by the build/commit script # These are set automatically by the build/commit script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 323, BUILD_REVISION => 325,
BUILD_DATE => "2011-12-03", BUILD_DATE => "2011-12-11",
}; };
1; 1;

View File

@ -1,7 +1,10 @@
#!/usr/bin/perl -w -I /home/msmud/lib/lib/perl5/site_perl/5.10.0/ #!/usr/bin/perl
# Quick and dirty by :pragma # Quick and dirty by :pragma
use warnings;
use strict;
use Google::Search; use Google::Search;
my ($nick, $arguments, $matches); my ($nick, $arguments, $matches);
@ -40,4 +43,3 @@ while( my $result = $search->next) {
} }
print "\n"; print "\n";