Skip to content

Commit 2044f24

Browse files
committed
fix: remove newline char for vercel
1 parent aab3f06 commit 2044f24

File tree

1 file changed

+1
-1
lines changed
  • src/steps/upload-environment-variables/providers

1 file changed

+1
-1
lines changed

src/steps/upload-environment-variables/providers/vercel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class VercelEnvironmentProvider extends EnvironmentProvider {
9393
stderr += data.toString();
9494
});
9595

96-
proc.stdin.write(value + '\n');
96+
proc.stdin.write(value);
9797
proc.stdin.end();
9898

9999
proc.on('close', (code) => {

0 commit comments

Comments
 (0)