[CI > Test] Fix using wrong var in script

This commit is contained in:
Ducko 2022-02-01 21:45:35 +00:00
parent 6936562841
commit dc69b4899a
1 changed files with 2 additions and 2 deletions

View File

@ -12,9 +12,9 @@ const test = () => {
} }
}); });
data.stdout.on('data', (data) => { proc.stdout.on('data', (data) => {
console.log(data.toString()); console.log(data.toString());
}) });
proc.on('close', async () => { proc.on('close', async () => {
process.exit(success ? 0 : 1); process.exit(success ? 0 : 1);