envpkt 0.6.1 → 0.6.2
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/cli.js +3 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2842,6 +2842,7 @@ const writeSealedToml = (configPath, sealedMeta) => {
|
|
|
2842
2842
|
output.push(`encrypted_value = """`);
|
|
2843
2843
|
output.push(pendingSeals.get(currentMetaKey));
|
|
2844
2844
|
output.push(`"""`);
|
|
2845
|
+
output.push("");
|
|
2845
2846
|
pendingSeals.delete(currentMetaKey);
|
|
2846
2847
|
}
|
|
2847
2848
|
currentMetaKey = metaMatch[1];
|
|
@@ -2855,6 +2856,7 @@ const writeSealedToml = (configPath, sealedMeta) => {
|
|
|
2855
2856
|
output.push(`encrypted_value = """`);
|
|
2856
2857
|
output.push(pendingSeals.get(currentMetaKey));
|
|
2857
2858
|
output.push(`"""`);
|
|
2859
|
+
output.push("");
|
|
2858
2860
|
pendingSeals.delete(currentMetaKey);
|
|
2859
2861
|
}
|
|
2860
2862
|
insideMetaBlock = false;
|
|
@@ -2869,6 +2871,7 @@ const writeSealedToml = (configPath, sealedMeta) => {
|
|
|
2869
2871
|
output.push(`encrypted_value = """`);
|
|
2870
2872
|
output.push(pendingSeals.get(currentMetaKey));
|
|
2871
2873
|
output.push(`"""`);
|
|
2874
|
+
output.push("");
|
|
2872
2875
|
pendingSeals.delete(currentMetaKey);
|
|
2873
2876
|
} else output.push(line);
|
|
2874
2877
|
if (line.slice(line.indexOf("=") + 1).trim().includes("\"\"\"")) {
|