Skip to content

Commit

Permalink
fix(sys): await writeFetchSuccessAsync
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Mar 26, 2020
1 parent d04fb90 commit bd6734d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/sys/fetch/fetch-module-async.ts
Expand Up @@ -13,7 +13,7 @@ export const fetchModuleAsync = async (sys: d.CompilerSystem, inMemoryFs: d.InMe
if (rsp) {
if (rsp.ok) {
const content = await rsp.clone().text();
writeFetchSuccessAsync(inMemoryFs, url, filePath, content, pkgVersions);
await writeFetchSuccessAsync(inMemoryFs, url, filePath, content, pkgVersions);
return content;
}

Expand Down

0 comments on commit bd6734d

Please sign in to comment.