Skip to content

Commit 4eaf37f

Browse files
committed
fix windows platform name
1 parent c598a11 commit 4eaf37f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28402,7 +28402,7 @@ const TOOL_NAME = 'BinDiff';
2840228402
function getPlatform() {
2840328403
switch (os.platform()) {
2840428404
case 'win32':
28405-
return 'Linux';
28405+
return 'Windows';
2840628406
case 'linux':
2840728407
return 'Linux';
2840828408
default:

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const TOOL_NAME = 'BinDiff';
1313
function getPlatform() {
1414
switch (os.platform()) {
1515
case 'win32':
16-
return 'Linux';
16+
return 'Windows';
1717
case 'linux':
1818
return 'Linux';
1919
default:

0 commit comments

Comments
 (0)