@take2identity/verosint 0.2.5 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/postinstall.js +1 -1
package/package.json
CHANGED
package/postinstall.js
CHANGED
|
@@ -173,7 +173,7 @@ function unzip({ opts, req, onSuccess, onError }) {
|
|
|
173
173
|
|
|
174
174
|
function untar({ opts, req, onSuccess, onError }) {
|
|
175
175
|
const ungz = zlib.createGunzip();
|
|
176
|
-
const untar = tar.
|
|
176
|
+
const untar = tar.extract({ path: opts.binPath });
|
|
177
177
|
ungz.on('error', onError);
|
|
178
178
|
untar.on('error', onError);
|
|
179
179
|
untar.on('end', onSuccess);
|