Skip to content
Snippets Groups Projects
Commit f0f8fd19 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: stdout/err initialization

parent de17ac8c
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,8 @@ export async function generateLockFile(
const { binarySource } = config;
logger.debug(`Spawning yarn install to create ${cwd}/yarn.lock`);
let lockFile = null;
let stdout: string;
let stderr: string;
let stdout = '';
let stderr = '';
let cmd: string;
try {
try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment