Skip to content

Commit

Permalink
chore(scripts/ghPagesDeploy): make sure root is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
hasezoey committed Oct 5, 2023
1 parent be5a9eb commit f8788c6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/ghPagesDeploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f8788c6

Please sign in to comment.