Fix bundling of dashboard in binary packages. (#8844)
This removes some code from the dashboard bundling script that was left over from before we changed how we were handling prefixing the old dashboard. The script did not get properly tested after that change in design, so the code unfortunately made it into master and broke package builds.
Austin S. Hemmelgarn committed
Apr 28, 2020 at 16:01 UTC
bacd92fb766c0384d988d5a73505df699d3fe0e4
1 file changed
-4
packaging/bundle-dashboard.sh
-4
@@ -12,7 +12,3 @@ 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}"
15
-cp -a "${WEBDIR}/old/dashboard_info.js" "${WEBDIR}"
16
-cp -a "${WEBDIR}/old/dashboard.slate.css" "${WEBDIR}"
17
-cp -a "${WEBDIR}/old/dashboard.css" "${WEBDIR}"
18
-cp -a "${WEBDIR}/old/main.css" "${WEBDIR}"