Skip to content

Commit

Permalink
Await io mkdirP (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Gross authored and GitHub committed Nov 15, 2019
1 parent 8d14a21 commit 84b3b28
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/restore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ async function run(): Promise<void> {
)} MB (${archiveFileSize} B)`
);

io.mkdirP(cachePath);
// Create directory to extract tar into
await io.mkdirP(cachePath);

// http://man7.org/linux/man-pages/man1/tar.1.html
// tar [-options] <name of the tar archive> [files or directories which to add into archive]
Expand Down

0 comments on commit 84b3b28

Please sign in to comment.