From: Steinar H. Gunderson Date: Wed, 10 Dec 2014 23:55:31 +0000 (+0100) Subject: Fix some paths after git rewriting. X-Git-Url: https://git.sesse.net/?p=remoteglot-book;a=commitdiff_plain;h=0197df32ce4c4b199c02574a12abca18920d37ec Fix some paths after git rewriting. --- diff --git a/www/opening-stats.pl b/www/opening-stats.pl index 47bae77..06f67b2 100755 --- a/www/opening-stats.pl +++ b/www/opening-stats.pl @@ -7,14 +7,14 @@ use lib '..'; use Position; use ECO; -ECO::unpersist("../book/openings.txt"); +ECO::unpersist("../openings.txt"); my $cgi = CGI->new; my $fen = $cgi->param('fen'); my $pos = Position->from_fen($fen); my $hex = unpack('H*', $pos->bitpacked_fen); -open my $fh, "-|", "../book/binlookup", "../book/open.mtbl", $hex - or die "../book/binlookup: $!"; +open my $fh, "-|", "../binlookup", "../open.mtbl", $hex + or die "../binlookup: $!"; my $opening;