Skip to content

Commit f571384

Browse files
committed
fix(win32): bump screenCapture.bat version for #86. fixes #20
1 parent 6e5120d commit f571384

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/win32/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function windowsSnapshot (options = {}) {
1919

2020
const displayChoice = displayName ? ` /d "${displayName}"` : ''
2121

22-
exec('"' + path.join(__dirname, 'screenCapture_1.3.1.bat') + '" "' + imgPath + '" ' + displayChoice, {
22+
exec('"' + path.join(__dirname, 'screenCapture_1.3.2.bat') + '" "' + imgPath + '" ' + displayChoice, {
2323
cwd: __dirname
2424
}, (err, stdout) => {
2525
if (err) {
@@ -67,7 +67,7 @@ function parseDisplaysOutput (output) {
6767
function listDisplays () {
6868
return new Promise((resolve, reject) => {
6969
exec(
70-
'"' + path.join(__dirname, 'screenCapture_1.3.1.bat') + '" /list', {
70+
'"' + path.join(__dirname, 'screenCapture_1.3.2.bat') + '" /list', {
7171
cwd: __dirname
7272
},
7373
(err, stdout) => {
File renamed without changes.

0 commit comments

Comments
 (0)