Skip to content

Commit

Permalink
fix(all): Migration to Linus.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Jan 5, 2022
1 parent d2b2f29 commit 78ed13b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/core.gbapp/services/GBDeployer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,8 @@ export class GBDeployer implements IGBDeployer {
// Install modules and compiles the web app.

GBLog.info(`Installing modules default.gbui (It may take a few minutes)...`);
child_process.execSync(`rm -r node_modules`, { cwd: root });

child_process.execSync(`rm -r node_modules 2>/dev/null`, { cwd: root });
child_process.execSync(`${npm} install`, { cwd: root });

GBLog.info(`Transpiling default.gbui...`);
Expand Down

0 comments on commit 78ed13b

Please sign in to comment.