diff options
Diffstat (limited to 'verifycert.erl')
-rwxr-xr-x | verifycert.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/verifycert.erl b/verifycert.erl index 2d04b20..d364adf 100755 --- a/verifycert.erl +++ b/verifycert.erl @@ -36,6 +36,6 @@ loop(RootCerts) -> loop(RootCerts) end. -main(_) -> - Certs = x509:read_pemfiles_from_dir("tests/known_roots/"), +main([KnownRoots]) -> + Certs = x509:read_pemfiles_from_dir(KnownRoots), loop(Certs). |