From 3283a58ea5bff7dcdd3f62ed88b540e429345700 Mon Sep 17 00:00:00 2001 From: xpetit <32063953+xpetit@users.noreply.github.com> Date: Wed, 31 Mar 2021 14:07:07 +0200 Subject: [PATCH] Put back student repository as read-only #2 --- go/tests/entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/go/tests/entrypoint.sh b/go/tests/entrypoint.sh index 8df82815..ce701a71 100755 --- a/go/tests/entrypoint.sh +++ b/go/tests/entrypoint.sh @@ -10,7 +10,8 @@ if test "$EXAM_MODE"; then fi if test "$EXAM_RUN_ONLY" = true; then - go build -o exe "./$EXERCISE" + go build -o ../exe "./$EXERCISE" + cd .. ./exe "$@" exit fi