|
|
@ -11,6 +11,10 @@ FILENAME="student/to-git-or-not-to-git.sh" |
|
|
|
if [ -f ${FILENAME} ]; then |
|
|
|
if [ -f ${FILENAME} ]; then |
|
|
|
# FILE exists and it's not empty |
|
|
|
# FILE exists and it's not empty |
|
|
|
if [ -s ${FILENAME} ]; then |
|
|
|
if [ -s ${FILENAME} ]; then |
|
|
|
|
|
|
|
if [[ $(cat $FILENAME | grep echo | wc -l) -ne 0 ]]; then |
|
|
|
|
|
|
|
echo "echo is not allowed in this exercise!" |
|
|
|
|
|
|
|
exit 1 |
|
|
|
|
|
|
|
fi |
|
|
|
submitted=$(bash $FILENAME) |
|
|
|
submitted=$(bash $FILENAME) |
|
|
|
expected=$(bash solutions/to-git-or-not-to-git.sh) |
|
|
|
expected=$(bash solutions/to-git-or-not-to-git.sh) |
|
|
|
diff <(echo "$submitted") <(echo "$expected") |
|
|
|
diff <(echo "$submitted") <(echo "$expected") |
|
|
|