summaryrefslogtreecommitdiff
path: root/desktop/node_modules/electron-packager/src/unzip.js
blob: 705c552c2ec9873b8ecbfc91d05890f250f28f8f (plain)
1
2
3
4
5
6
7
'use strict'

const extractZip = require('extract-zip')

module.exports = async function extractElectronZip (zipPath, targetDir) {
  await extractZip(zipPath, { dir: targetDir })
}