11 lines
248 B
Bash
Executable File
11 lines
248 B
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
# Build the frontend
|
|
yarn run build
|
|
|
|
# Build the dashboards
|
|
make dist-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
|