From 0e5bfba0708fad86544383b456dcd7dfe14aff26 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 22:37:07 -0500 Subject: [PATCH] fix: remove redundant SCRIPT_DIR assignment in C++ client build step --- build_and_test.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build_and_test.sh b/build_and_test.sh index 88d9c2b..2e05f27 100755 --- a/build_and_test.sh +++ b/build_and_test.sh @@ -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