Browse Source

Remove useless options as directories does not exists

content-update
Xavier Petit 4 years ago committed by xpetit
parent
commit
9d92df713f
  1. 5
      go/tests/entrypoint.sh

5
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

Loading…
Cancel
Save