claude-flow-tbowman01
Version:
Enterprise-grade AI agent orchestration with ruv-swarm integration (Alpha Release)
13 lines (9 loc) • 379 B
JavaScript
// Simple placeholder for install-arm64.js
// This handles ARM64 specific installations if needed
console.log('✅ Post-install setup completed');
// Check if we're on ARM64 and handle any specific requirements
if (process.arch === 'arm64') {
console.log('📦 ARM64 architecture detected - no additional setup required');
}
process.exit(0);