10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
|
|
yarn install
|
|
|
|
# Install frontend dependencies with Yarn, in www folder
|
|
cd www
|
|
# force a full update so the bloat script doesn't fail on missing files
|
|
rm -r node_modules
|
|
yarn install
|