From 75b4f5439aa08c28af7977bf87aa2ed6ec2c47b8 Mon Sep 17 00:00:00 2001 From: VZ Date: Mon, 25 Jan 2021 18:22:40 +0100 Subject: [PATCH] Fix setting WX_TEST_WEBREQUEST_URL in AppVeyor builds Don't use quotes around the value, they're not special for cmd.exe and remain part of the actual variable value. Co-authored-by: Maarten --- build/tools/appveyor-test.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/appveyor-test.bat b/build/tools/appveyor-test.bat index d755030093..5100ef9e9d 100755 --- a/build/tools/appveyor-test.bat +++ b/build/tools/appveyor-test.bat @@ -4,7 +4,7 @@ echo. pip install httpbin start /b python -m httpbin.core -set WX_TEST_WEBREQUEST_URL="http://127.0.0.1:5000" +set WX_TEST_WEBREQUEST_URL=http://127.0.0.1:5000 curl http://127.0.0.1:5000/ip echo.