lsh-framework 2.2.3 → 2.2.4
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.
|
@@ -661,7 +661,7 @@ LSH_SECRETS_KEY=${this.encryptionKey}
|
|
|
661
661
|
out('⬇️ Cloud secrets available but no local file');
|
|
662
662
|
if (autoExecute) {
|
|
663
663
|
out(' Pulling from cloud...');
|
|
664
|
-
await this.pull(envFilePath,
|
|
664
|
+
await this.pull(envFilePath, environment, false); // Use raw environment, not effectiveEnv
|
|
665
665
|
out('✅ Secrets pulled from cloud!');
|
|
666
666
|
}
|
|
667
667
|
else {
|
|
@@ -712,7 +712,7 @@ LSH_SECRETS_KEY=${this.encryptionKey}
|
|
|
712
712
|
out(` Cloud: ${status.cloudModified.toLocaleString()}`);
|
|
713
713
|
if (autoExecute) {
|
|
714
714
|
out(' Pulling from cloud (backup created)...');
|
|
715
|
-
await this.pull(envFilePath,
|
|
715
|
+
await this.pull(envFilePath, environment, false); // Use raw environment, not effectiveEnv
|
|
716
716
|
out('✅ Secrets synced from cloud!');
|
|
717
717
|
}
|
|
718
718
|
else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lsh-framework",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "Simple, cross-platform encrypted secrets manager with automatic sync, IPFS audit logs, and multi-environment support. Just run lsh sync and start managing your secrets.",
|
|
5
5
|
"main": "dist/app.js",
|
|
6
6
|
"bin": {
|