Merge pull request #124060 from stephank/fix-reproxy-darwin

reproxy: fix darwin build
This commit is contained in:
Robert Scott 2021-05-22 21:09:15 +01:00 committed by GitHub
commit bec3a445b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,12 @@ buildGoModule rec {
# Requires network access
substituteInPlace app/main_test.go \
--replace "Test_Main" "Skip_Main"
# Fails on Darwin.
# https://github.com/umputun/reproxy/issues/77
substituteInPlace app/discovery/provider/file_test.go \
--replace "TestFile_Events" "SkipFile_Events" \
--replace "TestFile_Events_BusyListener" "SkipFile_Events_BusyListener"
'';
vendorSha256 = null;