Skip to content

Commit

Permalink
poke it
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed Jun 9, 2020
1 parent a81e5e7 commit feb37d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/util.ts
Expand Up @@ -91,7 +91,8 @@ async function getBase(

return contents;
} catch (err) {
throw new Error(`Error: ${filePath}: ${err}`);
err.message = `Error: ${filePath}\n${err.message}`;
throw err;
}
}

Expand Down

0 comments on commit feb37d3

Please sign in to comment.