fix: remove redundant SCRIPT_DIR assignment in C++ client build step
Some checks failed
CI / build-and-test (push) Has been cancelled
Rust Quality Checks / rust-checks (push) Has been cancelled

This commit is contained in:
MayaTheShy
2025-11-08 22:37:07 -05:00
parent 532b39f02d
commit 5dd99a1195

View File

@@ -17,11 +17,10 @@ echo
# 2. Build the C++ client
echo "[2/3] Building C++ client..."
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$SCRIPT_DIR"
mkdir -p build
cd build
cmake "$SCRIPT_DIR" -DCMAKE_BUILD_TYPE=Release
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j$(nproc)
echo "✓ C++ client built successfully"
echo