From 9d92df713f10235aa478871da42bc94343dc2b5b Mon Sep 17 00:00:00 2001 From: Xavier Petit <32063953+xpetit@users.noreply.github.com> Date: Sat, 16 May 2020 12:04:22 +0200 Subject: [PATCH] Remove useless options as directories does not exists --- go/tests/entrypoint.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/go/tests/entrypoint.sh b/go/tests/entrypoint.sh index f3aa8f241..53c6345e0 100644 --- a/go/tests/entrypoint.sh +++ b/go/tests/entrypoint.sh @@ -5,7 +5,8 @@ set -o pipefail set -o nounset IFS=' ' -mkdir -p src/student + +mkdir src/student cd src/student if test "$REPOSITORY"; then @@ -16,7 +17,7 @@ if test "$REPOSITORY"; then fi else first_file=$(echo "$EXPECTED_FILES" | cut -d' ' -f1) - mkdir -p "$(dirname $first_file)" + mkdir "$(dirname $first_file)" cat > "$first_file" fi