Skip to content

Commit

Permalink
fix: seed "mkdirp is not a function" [] (#2640)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAnthony committed May 1, 2024
1 parent 5c6a1dd commit eba11b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/github.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const zlib = require('zlib')
const axios = require('axios')
const Listr = require('listr')
const tar = require('tar')
const mkdirp = require('mkdirp')
const {mkdirp} = require('mkdirp')

function getLatestGitHubRelease(repo, destination) {
return new Listr([
Expand Down

0 comments on commit eba11b5

Please sign in to comment.