1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00
rest-client--rest-client/spec/integration/capath_digicert
Andy Brody e6e241fc19 Fix integration tests: don't use EV DigiCert root.
www.mozilla.org has stopped using an EV certificate, so the root we need
to use has changed. Ideally we might pin to something that will
necessarily have a stable root certificate over time, such as
https://extended-validation.badssl.com.
2019-08-21 16:46:43 -04:00
..
399e7759.0 Fix integration tests: don't use EV DigiCert root. 2019-08-21 16:46:43 -04:00
3513523f.0 Fix integration tests: don't use EV DigiCert root. 2019-08-21 16:46:43 -04:00
digicert.crt Fix integration tests: don't use EV DigiCert root. 2019-08-21 16:46:43 -04:00
README Fixing broken ssl integration specs. 2014-02-12 09:10:58 -06:00

The CA path symlinks can be created by c_rehash(1ssl).

But in order for the tests to work on Windows, they have to be regular files.
You can turn them all into regular files by running this on a GNU system:

    for file in $(find . -type l); do
        cp -iv --remove-destination $(readlink -e $file) $file
    done