From 74693a4732a8a800ef285940435bcca55acdb05f Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Thu, 29 Dec 2022 08:40:48 -0800 Subject: [PATCH] Fix typo "encmake" in emcmakeGenerateTask() Summary: The task definitions in the (OSS-specific) build for Yoga's JS bindings expose `emcmakeGenerateTask()` to run Emscripten's `emcmake` wrapper over `cmake`'s project generator. This fixes a typo in its log output, where it will output "e*n*cmake" instead of "e*m*cmake". Differential Revision: D42279467 fbshipit-source-id: 8b37ea2a2d0db1932ddd20847a76ce145a8b3103 --- javascript/just.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/just.config.js b/javascript/just.config.js index b221a090..06b17d3c 100644 --- a/javascript/just.config.js +++ b/javascript/just.config.js @@ -108,7 +108,7 @@ function emcmakeGenerateTask() { "build", ...(ninja ? ["-G", "Ninja"] : []), ]; - logger.info(["encmake", ...args].join(" ")); + logger.info(["emcmake", ...args].join(" ")); return spawn(emcmake, args); };