Skip to content

Commit

Permalink
fix windows platform name
Browse files Browse the repository at this point in the history
  • Loading branch information
dumbasPL committed Nov 21, 2024
1 parent c598a11 commit 4eaf37f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28402,7 +28402,7 @@ const TOOL_NAME = 'BinDiff';
function getPlatform() {
switch (os.platform()) {
case 'win32':
return 'Linux';
return 'Windows';
case 'linux':
return 'Linux';
default:
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const TOOL_NAME = 'BinDiff';
function getPlatform() {
switch (os.platform()) {
case 'win32':
return 'Linux';
return 'Windows';
case 'linux':
return 'Linux';
default:
Expand Down

0 comments on commit 4eaf37f

Please sign in to comment.