From f8788c6cb1610165259ea6d3f6b67f108fff316b Mon Sep 17 00:00:00 2001 From: hasezoey Date: Thu, 5 Oct 2023 19:24:58 +0200 Subject: [PATCH] chore(scripts/ghPagesDeploy): make sure root is installed --- scripts/ghPagesDeploy.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/ghPagesDeploy.js b/scripts/ghPagesDeploy.js index 52b7fee2b..4e69d2da8 100644 --- a/scripts/ghPagesDeploy.js +++ b/scripts/ghPagesDeploy.js @@ -42,6 +42,11 @@ function main() { execSync(`git config user.name "${commiterInfo.name}"`, { stdio: 'inherit' }); execSync(`git config user.email "${commiterInfo.email}"`, { stdio: 'inherit' }); + console.log('\nInstall of root\n'); + + // make sure everything is correctly installed + execSync('yarn install', { stdio: 'inherit' }); + console.log('\nInstall & Build of website\n'); // make sure everything is correctly installed