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_verisign
2013-08-06 20:52:16 -07:00
..
7651b327.0 Dereference symlinks so tests work on Windows. 2013-08-06 20:52:16 -07:00
415660c1.0 Dereference symlinks so tests work on Windows. 2013-08-06 20:52:16 -07:00
README Dereference symlinks so tests work on Windows. 2013-08-06 20:52:16 -07:00
verisign.crt Dereference symlinks so tests work on Windows. 2013-08-06 20:52:16 -07: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