2021-10-05 15:57:25 +00:00
|
|
|
#!/bin/bash -eu
|
|
|
|
|
|
|
|
# Build the frontend
|
|
|
|
yarn run build
|
|
|
|
|
|
|
|
# Build the dashboards
|
2022-03-29 12:20:41 +00:00
|
|
|
make build-dashboards
|
2021-10-05 15:57:25 +00:00
|
|
|
|
|
|
|
# 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
|