1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-28 17:57:22 +03:00

F #3951: Fix build when EE & install.sh (#262)

This commit is contained in:
Sergio Betanzos 2020-09-29 14:46:00 +02:00 committed by GitHub
parent 54c0ae12ff
commit f77ec0b282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -2607,7 +2607,8 @@ src/sunstone/public/locale/languages/tr_datatable.txt"
FIREEDGE_BIN_FILES="src/fireedge/bin/fireedge-server"
FIREEDGE_MINIFIED_FILES="src/fireedge/dist"
FIREEDGE_MINIFIED_FILES="src/fireedge/dist \
src/fireedge/node_modules"
FIREEDGE_DEV_FILES="src/fireedge/src \
src/fireedge/webpack.config.js \

View File

@ -22,13 +22,16 @@ dependencies() {
}
install() {
clean
dependencies
npm run build
}
install_enterprise() {
clean
dependencies
npm run build-enterprise
# npm run build-enterprise
npm run build
}
#-------------------------------------------------------------------------------