@cryptotaxi247 / netdata-1 / commits / 3daf95612

Fixed bundling of React dashboard in DEB and RPM packages. (#8988)

This fixes an error in the code used to bundle the React dashboard in our DEB and RPM packages which caused it to not be installed correctly, resulting in the packages only displaying the old dashboard.

Austin S. Hemmelgarn committed May 12, 2020 at 12:36 UTC 3daf9561224a85689942c0e1e338f2ce0574ac24
1 file changed +1 -1
packaging/bundle-dashboard.sh
+1 -1
@@ -11,4 +11,4 @@ curl -sSL --connect-timeout 10 --retry 3 "https://github.com/netdata/dashboard/r
11 sha256sum -c "${SRCDIR}/packaging/dashboard.checksums" || exit 1
12 tar -xzf "${DASHBOARD_TARBALL}" -C "${SRCDIR}/tmp" || exit 1
13 # shellcheck disable=SC2046
14 -cp -a $(find "${SRCDIR}/tmp" -mindepth 1 -maxdepth 1) "${WEBDIR}"
14 +cp -a $(find "${SRCDIR}/tmp/build" -mindepth 1 -maxdepth 1) "${WEBDIR}"