File: README

package info (click to toggle)
ruby-rest-client 2.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 860 kB
  • sloc: ruby: 3,844; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
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