Rename project

This commit is contained in:
stefiosif
2024-09-14 22:34:47 +03:00
parent 49b413d24f
commit 062a2fe903
4 changed files with 16 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/sh
# Creating a .bat file to connect to cutechess GUI on windows
# 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"
@@ -13,9 +13,9 @@ if ! cd "$BUILD_DIR"; then
exit 1
fi
BAT_FILE_NAME="ippos.bat"
echo "ippos.exe -- --mode uci" > "$BAT_FILE_NAME"
echo "created ippos.bat in directory: $(pwd)"
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"