Skip to content

Commit

Permalink
[CSR-1964] fix: upload command options parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
ynahmany authored Dec 11, 2024
2 parents 7d945a2 + 1cb9dac commit 5532309
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cmd/src/config/upload/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ export function getEnvVariables(): Partial<
tag: process.env[configKeys.tag.env]
? process.env[configKeys.tag.env]?.split(',').map((i) => i.trim())
: undefined,
disableTitleTags: !!process.env[configKeys.disableTitleTags.env],
removeTitleTags: !!process.env[configKeys.removeTitleTags.env],
debug: !!process.env[configKeys.debug.env],
disableTitleTags: process.env[configKeys.disableTitleTags.env],
removeTitleTags: process.env[configKeys.removeTitleTags.env],
debug: process.env[configKeys.debug.env],
machineId: process.env[configKeys.machineId.env],
};
}

0 comments on commit 5532309

Please sign in to comment.