aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleh Zasypkin <aleh.zasypkin@gmail.com>2018-06-01 18:49:55 +0200
committerGitHub <noreply@github.com>2018-06-01 18:49:55 +0200
commitbc5f05ef2f144f5204191e54c7f31e18cc466185 (patch)
tree80c948c3673dcc6ce18f0360f7340f5985b8e01c
parent7440e9734d69f15d18012e0dd84fc05d4184b369 (diff)
Execute `tsc.cmd` on Windows during build. (#19622)
-rw-r--r--packages/kbn-plugin-helpers/tasks/build/create_build.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/kbn-plugin-helpers/tasks/build/create_build.js b/packages/kbn-plugin-helpers/tasks/build/create_build.js
index e50291968..55b83e083 100644
--- a/packages/kbn-plugin-helpers/tasks/build/create_build.js
+++ b/packages/kbn-plugin-helpers/tasks/build/create_build.js
@@ -144,7 +144,7 @@ module.exports = function createBuild(
}
execFileSync(
- join(buildSource, 'node_modules', '.bin', 'tsc'),
+ join(buildSource, 'node_modules', '.bin', winCmd('tsc')),
['--pretty', 'true'],
{
cwd: buildRoot,