Skip to content

Commit

Permalink
Comments update [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
dmythro committed May 11, 2016
1 parent 0920ab0 commit 37f3455
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class PackDir {
];

if (isWindows) {
// With Electron + ASAR, we can only use `execFile()`
// Within Electron + ASAR, we can only use `execFile()` for bundled zip.exe
this.execFile(this.getUnZipPath(), args, unset, callback || unset);
} else {
let cmd = 'unzip ' + args.join(' ');
Expand Down Expand Up @@ -212,7 +212,7 @@ class PackDir {
];

if (isWindows) {
// With Electron + ASAR, we can only use `execFile()`
// Within Electron + ASAR, we can only use `execFile()` for bundled zip.exe
this.execFile(this.getZipPath(), args, params, callback || unset);
} else {
let cmd = 'zip ' + args.join(' ');
Expand Down

0 comments on commit 37f3455

Please sign in to comment.