Skip to content

Commit

Permalink
Merge pull request #128 from shelfio/feature/add-logs
Browse files Browse the repository at this point in the history
Fix: assign log vars for non cold lambdas
  • Loading branch information
vladgolubev authored Jan 13, 2020
2 parents 549af76 + 9613e34 commit 7906a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/convert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export async function convertTo(filename: string, format: string): Promise<strin
)} --convert-to ${format} --outdir /tmp /tmp/${filename}`;
// due to unknown issue, we need to run command twice
try {
execSync(cmd);
logs = execSync(cmd);
} catch (e) {
logs = execSync(cmd);
}
Expand Down

0 comments on commit 7906a94

Please sign in to comment.