From 071d355c188271e81033345507d9ca15900d733c Mon Sep 17 00:00:00 2001 From: Jarle Aase Date: Mon, 4 Mar 2024 19:25:27 +0200 Subject: [PATCH] Changed url for curl test in ci workflow --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3884f26..c85513d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -126,7 +126,7 @@ jobs: # Give shinysocks some time to start sleep 5 # Run curl command to verify that shinysocks works - curl -x socks5://localhost:1080 https://github.com/jgaa/shinysocks/blob/master/ci/test.txt + curl -L --socks5-hostname -x socks5://localhost:1080 https://raw.githubusercontent.com/jgaa/shinysocks/master/ci/test.txt # Check the exit code of the curl command if [ $? -ne 0 ]; then # If the curl command failed, fail the workflow