Skip to content

Commit 4bd8eb5

Browse files
🩹 fix: some fixes
1 parent 6136463 commit 4bd8eb5

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

instructions.js

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/get-bin-path.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
import path from 'path';
2-
31
function getBinPath(platform: NodeJS.Platform) {
42
if (platform === 'linux') {
53
return '/usr/bin/gs';
64
}
75

86
if (platform === 'win32') {
9-
return path.resolve(__dirname, '../bin/gs/10.01.1_windows');
7+
return 'gswin64c';
108
}
119

1210
if (platform === 'darwin') {

0 commit comments

Comments
 (0)