Skip to content

Commit e127f4d

Browse files
committed
Fix make.js os specific paths
1 parent 459d82b commit e127f4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { platform } from "os";
44

55
const run = (cmd) => execSync(cmd, { stdio: "inherit" });
66

7-
const binPath = platform() === "win32" ? ".\\build\\float.exe" : ".\\build\\float";
7+
const binPath = platform() === "win32" ? ".\\build\\float.exe" : "./build/float";
88

99
// Clean build directory
1010
rmSync("./build", { recursive: true, force: true });

0 commit comments

Comments
 (0)