summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-04-28 16:01:25 -0400
committerGitHub <noreply@github.com>2020-04-28 16:01:25 -0400
commitbacd92fb766c0384d988d5a73505df699d3fe0e4 (patch)
tree1c2e0a3ddc3cfe919ce644c00f048c1e40a6d5ee /packaging
parent23b6dcc445a68794779b3b93e77518cae8b79881 (diff)
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.
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/bundle-dashboard.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/packaging/bundle-dashboard.sh b/packaging/bundle-dashboard.sh
index a72ea14855..62ad11c678 100755
--- a/packaging/bundle-dashboard.sh
+++ b/packaging/bundle-dashboard.sh
@@ -12,7 +12,3 @@ sha256sum -c "${SRCDIR}/packaging/dashboard.checksums" || exit 1
tar -xzf "${DASHBOARD_TARBALL}" -C "${SRCDIR}/tmp" || exit 1
# shellcheck disable=SC2046
cp -a $(find "${SRCDIR}/tmp" -mindepth 1 -maxdepth 1) "${WEBDIR}"
-cp -a "${WEBDIR}/old/dashboard_info.js" "${WEBDIR}"
-cp -a "${WEBDIR}/old/dashboard.slate.css" "${WEBDIR}"
-cp -a "${WEBDIR}/old/dashboard.css" "${WEBDIR}"
-cp -a "${WEBDIR}/old/main.css" "${WEBDIR}"