fleetbo-cockpit-cli 1.0.82 → 1.0.84
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 +1 -2
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -38,7 +38,6 @@ if (!fs.existsSync(envPath)) {
|
|
|
38
38
|
|
|
39
39
|
dotenv.config({ path: envPath, quiet: true });
|
|
40
40
|
|
|
41
|
-
// CORRECT — correspond à ton .env actuel
|
|
42
41
|
const projectId = process.env.VITE_FLEETBO_ENTERPRISE_ID;
|
|
43
42
|
const keyApp = process.env.VITE_FLEETBO_KEY_APP;
|
|
44
43
|
const testerEmail = process.env.VITE_FLEETBO_TESTER_EMAIL;
|
|
@@ -980,7 +979,7 @@ else {
|
|
|
980
979
|
uplinkFound = true;
|
|
981
980
|
// ⚡ Stabilisation du noyau : on attend 1.5s
|
|
982
981
|
setTimeout(() => {
|
|
983
|
-
syncFirebase(process.env.
|
|
982
|
+
syncFirebase(process.env.VITE_FLEETBO_KEY_APP, match[0], process.env.VITE_FLEETBO_TESTER_EMAIL);
|
|
984
983
|
}, 1500);
|
|
985
984
|
}
|
|
986
985
|
};
|