mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-06-08 16:36:42 -04:00
11 lines
196 B
Bash
Executable File
11 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
rm -rf node_modules web/node_modules backend/api/node_modules backend/email/node_modules command/node_modules backend/shared/node_modules
|
|
|
|
yarn install
|
|
|