hyperledger / fabric-sdk-py

Hyperledger Fabric Python SDK
https://fabric-sdk-py.readthedocs.io/en/latest/
Apache License 2.0
408 stars 201 forks source link

make check fails on wsl (windows subsystem for linux) #146

Closed dexhunter closed 3 years ago

dexhunter commented 3 years ago

I was trying to test the codebase and found that I was unable to execute the make check command due to the $PATH settings in wsl. The solution is found there

PATH=$(/usr/bin/printenv PATH | /usr/bin/perl -ne 'print join(":", grep { !/\/mnt\/[a-z]/ } split(/:/));')
dexhunter commented 3 years ago

documented at this wiki page