diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-01-08 12:05:12 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-01-08 12:05:12 +0100 |
commit | 2dd168416f0858c885e56bed671df2b3c7f1ebc0 (patch) | |
tree | dea809e63c35cf0bc92c537b09dc72355ab98857 | |
parent | 33042b0af9d4139959a1b9a7179dd3843ea00f0d (diff) | |
download | ca-certificates-2dd168416f0858c885e56bed671df2b3c7f1ebc0.tar.bz2 ca-certificates-2dd168416f0858c885e56bed671df2b3c7f1ebc0.tar.xz |
add update target
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -31,4 +31,8 @@ install: all clean: rm -rf update-ca-certificates c_rehash certdata.stamp *.crt -.PHONY: install clean +# https://hg.mozilla.org/mozilla-central/file/tip/security/nss/lib/ckfw/builtins/certdata.txt +update: + curl https://hg.mozilla.org/mozilla-central/raw-file/tip/security/nss/lib/ckfw/builtins/certdata.txt > certdata.txt + +.PHONY: install clean update |