This is an automated email from the ASF dual-hosted git repository.

yongzao pushed a commit to branch pkg-ain-in-win
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/pkg-ain-in-win by this push:
     new 746ec26e924 Update build_binary.py
746ec26e924 is described below

commit 746ec26e92442c85b6cfb7f7da83ce228e615f17
Author: Yongzao <[email protected]>
AuthorDate: Mon Nov 17 13:38:06 2025 +0800

    Update build_binary.py
---
 iotdb-core/ainode/build_binary.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/iotdb-core/ainode/build_binary.py 
b/iotdb-core/ainode/build_binary.py
index 1b5f99da214..5e1a5840f15 100644
--- a/iotdb-core/ainode/build_binary.py
+++ b/iotdb-core/ainode/build_binary.py
@@ -324,7 +324,7 @@ def install_dependencies(venv_python, venv_dir, script_dir):
                         shutil.rmtree(poetry_venv_path, ignore_errors=True)
                 poetry_venv_path.parent.mkdir(parents=True, exist_ok=True)
                 poetry_venv_path.symlink_to(venv_dir)
-                print(f"✓ Symlink created successfully")
+                print(f"Symlink created successfully")
             except Exception as e:
                 print(f"WARNING: Failed to create symlink: {e}")
                 print("Will try to use poetry install directly with 
VIRTUAL_ENV set")
@@ -387,7 +387,7 @@ def install_dependencies(venv_python, venv_dir, script_dir):
             sys.exit(1)
         else:
             print(
-                f"✓ Poetry is correctly using virtual environment: 
{poetry_venv_path}"
+                f"Poetry is correctly using virtual environment: 
{poetry_venv_path}"
             )
     else:
         print("Warning: Could not verify poetry virtual environment path")
@@ -465,12 +465,12 @@ def install_dependencies(venv_python, venv_dir, 
script_dir):
         )
         if test_result.returncode == 0:
             version = test_result.stdout.strip()
-            print(f"  ✓ {package} {version} installed")
+            print(f"{package} {version} installed")
         else:
             error_msg = (
                 test_result.stderr.strip() if test_result.stderr else "Unknown 
error"
             )
-            print(f"  ✗ {package} NOT found in virtual environment: 
{error_msg}")
+            print(f"{package} NOT found in virtual environment: {error_msg}")
             missing_packages.append(package)
 
     if missing_packages:

Reply via email to