You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
249 B
11 lines
249 B
2 years ago
|
#!/bin/bash -eu
|
||
|
|
||
|
# Build the frontend
|
||
|
yarn run build
|
||
|
|
||
|
# Build the dashboards
|
||
|
make build-dashboards
|
||
|
|
||
|
# Fix permissions (webpack sometimes outputs files with mode = 666 due to reasons unknown (race condition/umask issue afaics))
|
||
|
chmod -R g-w,o-w dist
|