From addc0bec067a5452f2faa4c9d074c47206d670de Mon Sep 17 00:00:00 2001 From: Soham Das Date: Thu, 4 Jun 2026 13:55:06 -0700 Subject: [PATCH] Remove stale CLI references from build.s --- build.sh | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/build.sh b/build.sh index ecf2ae9d..bf6c9338 100644 --- a/build.sh +++ b/build.sh @@ -1,13 +1,12 @@ #!/bin/bash # MXC Linux Build Script -# Builds the lxc-exec binary and TypeScript SDK/CLI +# Builds the lxc-exec binary and TypeScript SDK set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" SRC_DIR="$SCRIPT_DIR/src" SDK_DIR="$SCRIPT_DIR/sdk" -CLI_DIR="$SCRIPT_DIR/cli" # Parse arguments BUILD_TYPE="release" @@ -39,7 +38,7 @@ while [[ $# -gt 0 ]]; do echo "" echo "Options:" echo " --debug Build in debug mode (default: release)" - echo " --rust-only Only build Rust binaries, skip SDK/CLI" + echo " --rust-only Only build Rust binaries, skip SDK" echo " --with-hyperlight Build with Hyperlight (micro-VM) backend (x86_64 only)" echo " --with-microvm Build with NanVix MicroVM backend (KVM required at runtime)" echo " -h, --help Show this help message" @@ -140,19 +139,13 @@ if [ -n "$TARGET_TRIPLE" ]; then fi fi -# Build SDK and CLI +# Build SDK if [ "$BUILD_SDK" = true ]; then echo "" echo "=== Building TypeScript SDK ===" cd "$SDK_DIR" npm install --ignore-scripts 2>/dev/null || true npm run build - - echo "" - echo "=== Building TypeScript CLI ===" - cd "$CLI_DIR" - npm install 2>/dev/null || true - npm run build fi echo ""