Browse Source

ui: fix 'make ui' again (#5751)

When the v1 ui was removed the ui build incorrectly copied everything
into a /dist/ subdirectory instead of directly into the top level.
pull/5754/head
R.B. Boyer 6 years ago committed by GitHub
parent
commit
63508c6015
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      build-support/functions/20-build.sh

4
build-support/functions/20-build.sh

@ -114,8 +114,8 @@ function build_ui {
if test ${ret} -eq 0
then
rm -rf ${1}/pkg/web_ui
mkdir -p ${1}/pkg/web_ui
cp -r ${1}/ui-v2/dist/ ${1}/pkg/web_ui
mkdir -p ${1}/pkg
cp -r ${1}/ui-v2/dist ${1}/pkg/web_ui
fi
popd > /dev/null

Loading…
Cancel
Save