fleetbo-cockpit-cli 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli.js +14 -0
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -318,6 +318,20 @@ if (command === 'alex') {
|
|
|
318
318
|
// COMMAND: android / ios (PROPULSION BUILD)
|
|
319
319
|
// ============================================
|
|
320
320
|
else if (command === 'android' || command === 'ios') {
|
|
321
|
+
// 🛑 INTERCEPTION IOS : BLOQUAGE NET (MAINTENANCE/BETA)
|
|
322
|
+
if (command === 'ios') {
|
|
323
|
+
console.log(`\n\x1b[36m⚡ FLEETBO IOS PROPULSION\x1b[0m`);
|
|
324
|
+
console.log(`\x1b[33m[0/3] Initializing Neural Uplink...\x1b[0m`);
|
|
325
|
+
|
|
326
|
+
// Simulation d'un petit temps de chargement pour l'effet "OS"
|
|
327
|
+
await new Promise(r => setTimeout(r, 800));
|
|
328
|
+
|
|
329
|
+
console.log(`\n\x1b[31m⛔ PROPULSION ABORTED: iOS Frequency Restricted.\x1b[0m`);
|
|
330
|
+
console.log(`\x1b[90m This module is currently reserved for Vanguard Pilots (Closed Beta).\x1b[0m`);
|
|
331
|
+
console.log(`\x1b[90m Please engage propulsion on Android frequency for now.\x1b[0m\n`);
|
|
332
|
+
|
|
333
|
+
process.exit(1); // Arrêt propre du processus
|
|
334
|
+
}
|
|
321
335
|
checkGitSecurity();
|
|
322
336
|
const platform = command;
|
|
323
337
|
const nativeDir = platform === 'android' ? 'public/native/android/' : 'public/native/ios/';
|