mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
573 B
30 lines
573 B
#!/usr/bin/env bash |
|
|
|
# Unofficial Bash Strict Mode |
|
set -euo pipefail |
|
IFS=' |
|
' |
|
|
|
mkdir student |
|
cd student |
|
|
|
if test "$REPOSITORY"; then |
|
password=$(cat) |
|
if ! git clone --depth=1 --shallow-submodules http://root:"${password}"@"$REPOSITORY" . 2>/dev/null; then |
|
echo Could not clone your repository |
|
exit 1 |
|
fi |
|
else |
|
first_file=$(echo "$EXPECTED_FILES" | cut -d' ' -f1) |
|
mkdir "$(dirname $first_file)" |
|
cat > "$first_file" |
|
fi |
|
|
|
cd |
|
cp -rT /app . |
|
|
|
if ! test -f ${EXERCISE}_test.sh; then |
|
echo No test file found for the exercise : "$EXERCISE" |
|
exit 1 |
|
fi |
|
bash ${EXERCISE}_test.sh
|
|
|