From 0197df32ce4c4b199c02574a12abca18920d37ec Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Thu, 11 Dec 2014 00:55:31 +0100 Subject: [PATCH] Fix some paths after git rewriting. --- www/opening-stats.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.2