Skip to content

Commit

Permalink
fix: missing require to fs.rmSync.
Browse files Browse the repository at this point in the history
  • Loading branch information
richardo2016 committed Apr 10, 2023
1 parent 6fd1619 commit 602b92e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/download-git.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const ProgressBar = require('progress')
const tar = require('tar')
const https = require('https')
const { createHash } = require('crypto')
const { rm, mkdir, createReadStream, createWriteStream, existsSync } = require('fs')
const { rm, rmSync, mkdir, createReadStream, createWriteStream, existsSync } = require('fs')

const config = require('./config')()

Expand Down

0 comments on commit 602b92e

Please sign in to comment.