summaryrefslogtreecommitdiffstats
path: root/bin/update
blob: a17335cc39324bbd72472c8b1e9454681d59402b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e

if [ ! -d CVE ]; then
	echo "run in data subdirectory" >&2
	exit 1
fi

cd CVE
rm -f allitems.html
wget --quiet http://www.cve.mitre.org/cve/downloads/allitems.html
../../bin/updatelist allitems.html ../DSA/list ../DTSA/list list > list.new
mv -f list.new list

© 2014-2024 Faster IT GmbH | imprint | privacy policy