From c80db9ca8a843fc400ca8297d29caa8d8738fae5 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 30 Nov 2016 11:24:42 +0100 Subject: [PATCH] fix : this didn't run on windows --- build/bin/build-all.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/bin/build-all.js b/build/bin/build-all.js index 5a190e277..65acafb9c 100644 --- a/build/bin/build-all.js +++ b/build/bin/build-all.js @@ -19,7 +19,7 @@ Object.keys(components).forEach(key => { }); const paths = componentPaths.join(','); -const cli = `node_modules/.bin/cooking build -c ${paths} -p`; +const cli = path.join('node_modules', '.bin', 'cooking') + ` build -c ${paths} -p`; execSync(cli, { stdio: 'inherit'