cc-hub-cli 1.1.14 → 1.1.15
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/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1311,7 +1311,7 @@ function profileCommand() {
|
|
|
1311
1311
|
ensureSettingsFile();
|
|
1312
1312
|
const settings2 = readJson(SETTINGS_FILE);
|
|
1313
1313
|
const exported = Object.fromEntries(
|
|
1314
|
-
Object.entries(settings2).filter(([key]) => !key.startsWith("_"))
|
|
1314
|
+
Object.entries(settings2).filter(([key]) => !key.startsWith("_") && key != "env")
|
|
1315
1315
|
);
|
|
1316
1316
|
const env = {
|
|
1317
1317
|
...typeof exported.env === "object" && exported.env !== null ? exported.env : {}
|