We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0f0a93 commit c341586Copy full SHA for c341586
bin/install-stockfish
@@ -1,4 +1,4 @@
1
-#!/bin/sh
+#!/bin/bash
2
3
mkdir -p local
4
cd local
bin/prod/deploy-scripts-to
@@ -0,0 +1,10 @@
+#!/bin/sh
+. bin/lilarc
+
+REMOTE=$1
5
+REMOTE_DIR=$2
6
7
+lilalog "Rsync scripts"
8
+rsync --archive --progress bin $REMOTE:$REMOTE_DIR
9
10
+lilalog "Deploy complete"
bin/revert-stockfish
@@ -0,0 +1,15 @@
+mkdir -p local
+cd local
+rm -rf Stockfish
+git clone https://github.com/ddugovic/Stockfish
+cd Stockfish/src
+git reset --hard 271582eaa5d43afd4ef48ec3d8bcdfc724ac148e
+if [[ $1 = "old" ]]; then
+ make build ARCH=x86-64
11
+else
12
+ make build ARCH=x86-64-modern
13
+fi
14
+./stockfish quit
15
+cd ../..
0 commit comments