Skip to content

Commit ce8313b

Browse files
committed
Preserve whitespace
1 parent b488cc4 commit ce8313b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/vercel-env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const addEnv = async (deploymentEnv: DeploymentEnv, envVarMap: EnvVarMap) => {
1919
for (const varName in envVarMap) {
2020
const varValue = envVarMap[varName]
2121
stdoutList.push(
22-
limit(() => exec( `printf %s ${varValue} | vercel env add ${varName} ${deploymentEnv}` ).then(printStdout))
22+
limit(() => exec( `printf %s "${varValue}" | vercel env add ${varName} ${deploymentEnv}` ).then(printStdout))
2323
)
2424
}
2525

0 commit comments

Comments
 (0)