We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ff64db commit 702501cCopy full SHA for 702501c
packages/db/src/updatePkgsWithGlobalEnvs.ts
@@ -38,7 +38,7 @@ export async function updatePkgsWithGlobalEnvs(globalEnvKey: string, globEnvValu
38
const currentVal = serviceEnvs[globalEnvKey];
39
if (currentVal === globEnvValue) {
40
logs.info(`Global env ${globalEnvKey} for ${pkg.dnpName} already set to ${globEnvValue}, skipping update`);
41
- } else if (!currentVal && !globEnvValue) {
+ } else if (!currentVal && (!globEnvValue || globEnvValue === "false")) {
42
// empty strings are determined as false values within packages. Dappmanager 0.2.103 and below sets glob envs bool false values as empty strings
43
logs.info(`Global env ${globalEnvKey} for ${pkg.dnpName} already nullish, skipping update`);
44
} else {
0 commit comments