From 61af1bfd2d70de3c8a55ccf6d730736c8bf148da Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Jun 2026 11:12:41 +0000 Subject: [PATCH 1/2] Initial plan From 9c49a5d9c738f904ed2e4f8c713f0c6bae82362b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 26 Jun 2026 11:14:43 +0000 Subject: [PATCH 2/2] Fix curl missing -L flag for PTB download in CI workflow --- .github/workflows/matlab-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/matlab-tests.yml b/.github/workflows/matlab-tests.yml index f65f3490..854f6848 100644 --- a/.github/workflows/matlab-tests.yml +++ b/.github/workflows/matlab-tests.yml @@ -43,7 +43,7 @@ jobs: - name: Download Psychtoolbox dependency (V3.0.21 as the last version useable with CI) run: | - curl -o /tmp/ptb.zip https://github.com/Psychtoolbox-3/Psychtoolbox-3/releases/download/3.0.21.0/3.0.21.0.zip && unzip -o -d /tmp/PTB /tmp/ptb.zip + curl -L -o /tmp/ptb.zip https://github.com/Psychtoolbox-3/Psychtoolbox-3/releases/download/3.0.21.0/3.0.21.0.zip && unzip -o -d /tmp/PTB /tmp/ptb.zip - name: Set up MATLAB uses: matlab-actions/setup-matlab@v3