From edfa430db315e72f7bcaade36c5f4a7e8c7f8d11 Mon Sep 17 00:00:00 2001 From: stefiosif Date: Wed, 15 Jul 2026 19:18:34 +0300 Subject: [PATCH] Delete windows script --- README.md | 11 ----------- scripts/build_windows_bat.sh | 25 ------------------------- 2 files changed, 36 deletions(-) delete mode 100755 scripts/build_windows_bat.sh diff --git a/README.md b/README.md index 3f215e4..2ac0bdf 100644 --- a/README.md +++ b/README.md @@ -33,8 +33,6 @@ No official rating yet. Estimated around **2300 Elo**, based on self-play SPRT r Requires Rust ([rustup](https://rustup.rs)). -### Linux / macOS - ```sh git clone https://github.com/stefiosif/zeal.git cd zeal @@ -42,15 +40,6 @@ cargo build --release ./target/release/zeal ``` -### Windows - -```powershell -git clone https://github.com/stefiosif/zeal.git -cd zeal -cargo build --release -.\target\release\zeal.exe -``` - ## Credits Thanks to CodeMonkeyKing's YouTube series and the [Engine Programming Discord](https://discord.gg/F6W6mMsTGN). diff --git a/scripts/build_windows_bat.sh b/scripts/build_windows_bat.sh deleted file mode 100755 index 8d1c346..0000000 --- a/scripts/build_windows_bat.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -# Create a batch file to connect with cutechess GUI on windows - -if ! cargo build --release --target x86_64-pc-windows-gnu; then - echo "cargo build failed" - exit 1 -fi - -BUILD_DIR="../target/x86_64-pc-windows-gnu/release" -if ! cd "$BUILD_DIR"; then - echo "failed to navigate to the build directory: $BUILD_DIR" - exit 1 -fi - -BAT_FILE_NAME="zeal.bat" -echo ".\zeal --mode uci" > "$BAT_FILE_NAME" -echo "created "$BAT_FILE_NAME" in directory: $(pwd)" - -if ! unix2dos "$BAT_FILE_NAME"; then - echo "failed to convert line endings for Windows" - exit 1 -fi - -echo "converted line endings for Windows successfully"