Skip to content

Commit

Permalink
fix: windows install
Browse files Browse the repository at this point in the history
  • Loading branch information
erezrokah committed Jan 14, 2021
1 parent bb60bd4 commit 20381cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const statAsync = promisify(fs.stat)
const readFileAsync = promisify(fs.readFile)
const writeFileAsync = promisify(fs.writeFile)
const accessAsync = promisify(fs.access)
const mkdtempAsync = promisify(fs.mkdtempSync)
const mkdtempAsync = promisify(fs.mkdtemp)
const appendFileAsync = promisify(fs.appendFile)

const readFileAsyncCatchError = async (filepath) => {
Expand Down

0 comments on commit 20381cc

Please sign in to comment.