From 7bf87ff8de298004702ddc2e62da96261a01b493 Mon Sep 17 00:00:00 2001 From: Kevin Bloch Date: Sat, 28 Jun 2025 22:34:02 +0200 Subject: [PATCH] Fix GitHub 404 in interface.md Works OK from the deployed site, but this way it works both there and in GitHub --- building/tooling/test-runners/interface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/building/tooling/test-runners/interface.md b/building/tooling/test-runners/interface.md index 04e080a9..f7e6fce6 100644 --- a/building/tooling/test-runners/interface.md +++ b/building/tooling/test-runners/interface.md @@ -5,7 +5,7 @@ All interactions with the Exercism website are handled automatically and are not ## Execution -- A Test Runner should provide an executable script. You can find more information in the [docker.md](/docs/building/tooling/test-runners/docker) file. +- A Test Runner should provide an executable script. You can find more information in the [docker.md](/docs/building/tooling/test-runners/docker.md) file. - The script will receive three parameters: - The slug of the exercise (e.g. `two-fer`). - A path to an input directory (with a trailing slash) containing the submitted solution file(s) and any other exercise file(s). This directory should be considered as read-only. It's technically possible to write into it but it's better to use `/tmp` for temporary files (e.g. for compiling sources).