Skip to content
This repository was archived by the owner on Jul 24, 2019. It is now read-only.

Commit b3c688d

Browse files
committedMar 17, 2016
Rename var
1 parent b29be1d commit b3c688d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎install.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
var requestProgress = require('request-progress')
1010
var progress = require('progress')
11-
var ExtractZip = require('extract-zip')
11+
var extractZip = require('extract-zip')
1212
var cp = require('child_process')
1313
var fs = require('fs-extra')
1414
var hasha = require('hasha')
@@ -285,7 +285,7 @@ function extractDownload(filePath) {
285285

286286
if (filePath.substr(-4) === '.zip') {
287287
console.log('Extracting zip contents')
288-
ExtractZip(path.resolve(filePath), {dir: extractedPath}, function(err) {
288+
extractZip(path.resolve(filePath), {dir: extractedPath}, function(err) {
289289
if (err) {
290290
console.error('Error extracting zip')
291291
deferred.reject(err)

0 commit comments

Comments
 (0)
This repository has been archived.