summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2020-01-16 07:27:47 -0500
committerGitHub <noreply@github.com>2020-01-16 07:27:47 -0500
commit81251da72c50c0b9efe9efced75452069c4834cb (patch)
tree80fccfe06cbb1a17bd24eb7321e84fb818177954 /tests
parentd6c35a1a43ae04dfd0817512b5aacad3287bb8d1 (diff)
Move the script for installing required packages into the main repo. (#7563)
* Move the script for installing required packages into the main repo. Based on discussion with Costa. Most of what this script is actually used for directly is in the main repo anyway, so it makes more sense to have it there so that any changes get reviewed properly. * Fix typo in RPM package build setup.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/updater_checks.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/updater_checks.sh b/tests/updater_checks.sh
index 245c6e60ad..826495bc3d 100755
--- a/tests/updater_checks.sh
+++ b/tests/updater_checks.sh
@@ -68,7 +68,7 @@ esac
# Download and run depednency scriptlet, before anything else
#
deps_tool="/tmp/deps_tool.$$.sh"
-curl -Ss -o ${deps_tool} https://raw.githubusercontent.com/netdata/netdata-demo-site/master/install-required-packages.sh
+curl -Ss -o ${deps_tool} https://raw.githubusercontent.com/netdata/netdata/master/packaging/installer/install-required-packages.sh
if [ -f "${deps_tool}" ]; then
echo "Running dependency handling script.."
chmod +x "${deps_tool}"