Skip to content

Commit 4e2f567

Browse files
jchavarricristianoc
authored andcommitted
format
1 parent 2021bc9 commit 4e2f567

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ lib/
44
vendor/
55
ninja/
66
syntax/
7-
ocaml-tree/
7+
ocaml-tree/
8+
_opam

scripts/bin_path.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ var bin_path = path.join(
2020
var bsc_exe = path.join(bin_path, "bsc.exe");
2121

2222
/**
23-
* @type{string}
24-
*/
23+
* @type{string}
24+
*/
2525
var ninja_exe = path.join(bin_path, "ninja.exe");
2626

2727
/**

scripts/install.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,7 @@ function checkPrebuiltBscCompiler() {
125125
return;
126126
}
127127
try {
128-
var version = String(
129-
child_process.execFileSync(bsc_exe, ["-v"])
130-
);
128+
var version = String(child_process.execFileSync(bsc_exe, ["-v"]));
131129

132130
var myOCamlVersion = version.substr(
133131
version.indexOf(":") + 1,

0 commit comments

Comments
 (0)