backend-infra-engineer: Post v0.3.9-hotfix7 snapshot (build cleanup)

This commit is contained in:
scawful
2025-12-22 00:20:49 +00:00
parent 2934c82b75
commit 5c4cd57ff8
1259 changed files with 239160 additions and 43801 deletions

View File

@@ -179,11 +179,11 @@ main() {
print_header "Step 3/3: Code Formatting"
# Check if format-check target exists
if cmake --build "$BUILD_DIR" --target help 2>/dev/null | grep -q "format-check"; then
if cmake --build "$BUILD_DIR" --target help 2>/dev/null | grep -q "yaze-format-check"; then
print_info "Checking code formatting..."
if ! cmake --build "$BUILD_DIR" --target format-check 2>&1 | tail -10; then
if ! cmake --build "$BUILD_DIR" --target yaze-format-check 2>&1 | tail -10; then
print_error "Code formatting check failed!"
print_info "Fix with: cmake --build $BUILD_DIR --target format"
print_info "Fix with: scripts/lint.sh fix"
exit 3
fi
print_success "Code formatting passed"