Skip to content

Commit

Permalink
Merge pull request #538 from richardo2016-forks/fix/download_git
Browse files Browse the repository at this point in the history
fix: missing require to `fs.rmSync`.
  • Loading branch information
tidy-dev authored Aug 3, 2023
2 parents 9187557 + 9e82200 commit 0f5a4f1
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 0f5a4f1

Please sign in to comment.