Cygwin: WINDOWS can be Windows instead.

This commit is contained in:
Denis Chancogne 2026-04-17 16:42:50 +02:00
parent 643a8fc493
commit ee2fbcd41e
2 changed files with 2 additions and 2 deletions

View file

@ -16,4 +16,4 @@ jobs:
run: make && make docs
- name: Check
shell: bash {0}
run: ldd proxytunnel.exe | awk '{print $3}' | grep -v WINDOWS | sort | uniq
run: ldd proxytunnel.exe | awk '{print $3}' | grep -vi windows/system32 | sort | uniq

View file

@ -109,5 +109,5 @@ $ make docs
To use `proxytunnel.exe` from windows, copy cygwin and openssl dll to the same directory as proxytunnel.exe (use `ldd` cmd to see what dll are used by `proxytunnel.exe`) cmd:
```
$ cp $(ldd proxytunnel.exe | awk '{print $3}' | grep -v WINDOWS | sort | uniq) .
$ cp $(ldd proxytunnel.exe | awk '{print $3}' | grep -vi windows/system32 | sort | uniq) .
```