Skip to content

Commit 9613e34

Browse files
committed
Fix: assign log vars for non cold lambdas
1 parent 549af76 commit 9613e34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/convert.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export async function convertTo(filename: string, format: string): Promise<strin
3232
)} --convert-to ${format} --outdir /tmp /tmp/${filename}`;
3333
// due to unknown issue, we need to run command twice
3434
try {
35-
execSync(cmd);
35+
logs = execSync(cmd);
3636
} catch (e) {
3737
logs = execSync(cmd);
3838
}

0 commit comments

Comments
 (0)