We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80ce472 commit b7a11a7Copy full SHA for b7a11a7
native/.gitkeep
scripts/buildocaml.js
@@ -32,6 +32,10 @@ exports.checkEnvCompiler = checkEnvCompiler;
32
*/
33
function ensureOCamlExistsSync() {
34
if (!fs.existsSync(ocamlVersionFilePath)) {
35
+ if (!fs.existsSync(ocamlSrcDir)) {
36
+ fs.mkdirSync(ocamlSrcDir);
37
+ }
38
+
39
console.log("Extracting OCaml sources...");
40
cp.execSync(`tar xzf ../vendor/ocaml.tar.gz`, {
41
cwd: ocamlSrcDir,
0 commit comments