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.
18 lines
345 B
18 lines
345 B
#!/usr/bin/env bash |
|
|
|
# Unofficial Bash Strict Mode |
|
set -euo pipefail |
|
IFS=' |
|
' |
|
FILENAME="student/to-git-or-not-to-git.sh" |
|
|
|
if [ -f ${FILENAME} ]; then |
|
if [ -s ${FILENAME} ]; then |
|
diff <(echo "$submitted") <(echo "$expected") |
|
else |
|
echo "The file exist but empty" |
|
exit 1 |
|
fi |
|
else |
|
echo "File does not exist" |
|
fi
|
|
|