From b30b47227e83b3f53374f45fbfa3a87d178075af Mon Sep 17 00:00:00 2001 From: miguel Date: Fri, 12 Aug 2022 09:40:54 +0100 Subject: [PATCH] Fix(removing unnecessary code) --- sh/tests/to-git-or-not-to-git_test.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sh/tests/to-git-or-not-to-git_test.sh b/sh/tests/to-git-or-not-to-git_test.sh index 2c0af880..d84afe63 100755 --- a/sh/tests/to-git-or-not-to-git_test.sh +++ b/sh/tests/to-git-or-not-to-git_test.sh @@ -4,18 +4,18 @@ set -euo pipefail IFS=' ' + FILENAME="student/to-git-or-not-to-git.sh" +submitted=$(bash student/to-git-or-not-to-git.sh) +expected=$(bash solutions/to-git-or-not-to-git.sh) +# True if FILE exists and is a regular file if [ -f ${FILENAME} ]; then + # FILE exists and it's not empty if [ -s ${FILENAME} ]; then - submitted=$(bash student/to-git-or-not-to-git.sh) - expected=$(bash solutions/to-git-or-not-to-git.sh) - echo $submitted - echo $expected diff <(echo "$submitted") <(echo "$expected") else - echo "The file exist but empty" - exit 1 + echo "The file exist but is empty" fi else echo "File does not exist"