From 065cc828d1c4e4ff0ac9a6aa7bcccedba5dd87eb Mon Sep 17 00:00:00 2001 From: Guangcong Luo Date: Thu, 27 Jun 2019 14:41:24 -0400 Subject: [PATCH] Build replays in `./build full` Now that the replay repo is inside the client repo, this makes sense. --- build | 1 + 1 file changed, 1 insertion(+) diff --git a/build b/build index e8758632e..d04b38785 100755 --- a/build +++ b/build @@ -36,6 +36,7 @@ case 'full': execSync(`node ./build-tools/build-indexes`, options); execSync(`node ./build-tools/build-learnsets`, options); execSync(`node ./build-tools/build-minidex`, options); + execSync(`node ./replays/build`, options); full = ' full'; break; case 'indexes':