diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-23 16:45:17 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-23 16:45:17 +0000 |
commit | b98f2fb9922af9b7a8ec418716d79ee2a4af5b77 (patch) | |
tree | a0f4f617c881a28eb0d52754b15b0a082bb545e1 /make-dist | |
parent | Adding debian version 18.2.2-1. (diff) | |
download | ceph-b98f2fb9922af9b7a8ec418716d79ee2a4af5b77.tar.xz ceph-b98f2fb9922af9b7a8ec418716d79ee2a4af5b77.zip |
Merging upstream version 18.2.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'make-dist')
-rwxr-xr-x | make-dist | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -55,7 +55,7 @@ download_from() { exit fi url=$url_base/$fname - wget -c --no-verbose -O $fname $url + wget --no-verbose -O $fname $url if [ $? != 0 -o ! -e $fname ]; then echo "Download of $url failed" elif [ $(sha256sum $fname | awk '{print $1}') != $sha256 ]; then @@ -140,7 +140,7 @@ build_dashboard_frontend() { echo "Building ceph-dashboard frontend with build:localize script"; # we need to use "--" because so that "--configuration production" # survives accross all scripts redirections inside package.json - npm run build:localize -- --configuration production + DASHBOARD_FRONTEND_LANGS="ALL" npm run build:localize -- --configuration production deactivate cd $CURR_DIR rm -rf $TEMP_DIR |