diff --git a/.gitignore b/.gitignore index 8939287da6d19..4bd537dea9055 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,7 @@ data/ dist/ todos/ node_modules/ +local/ cljs/*/out cljs/*/repl diff --git a/bin/install-stockfish b/bin/install-stockfish new file mode 100755 index 0000000000000..3430d036dc8bf --- /dev/null +++ b/bin/install-stockfish @@ -0,0 +1,14 @@ +#!/bin/bash + +mkdir -p local +cd local +rm -rf Stockfish +git clone https://github.com/ddugovic/Stockfish +cd Stockfish/src +if [[ $1 = "old" ]]; then + make build ARCH=x86-64 +else + make build ARCH=x86-64-modern +fi +./stockfish quit +cd ../.. diff --git a/bin/prod/deploy b/bin/prod/deploy index 053ec41a12540..d447c1ec61963 100755 --- a/bin/prod/deploy +++ b/bin/prod/deploy @@ -60,7 +60,8 @@ RSYNC_OPTIONS=" \ --exclude conf/application.conf \ --exclude logs \ --exclude RUNNING_PID \ - --exclude bin/.translate_version"; + --exclude bin/.translate_version \ + --exclude local"; lilalog "Rsync scripts, binaries and assets" stage="target/universal/stage" diff --git a/modules/tournament/src/main/Env.scala b/modules/tournament/src/main/Env.scala index b1f870bc9bc21..66913ec622a91 100644 --- a/modules/tournament/src/main/Env.scala +++ b/modules/tournament/src/main/Env.scala @@ -129,7 +129,6 @@ final class Env( scheduler.message(5 minutes) { tournamentScheduler -> actorApi.ScheduleNow } - tournamentScheduler ! actorApi.ScheduleNow } private[tournament] lazy val tournamentColl = db(CollectionTournament)