fix(easy-perms): fix test to check only the perms

This commit is contained in:
miguel 2022-12-22 16:22:10 +00:00 committed by MSilva95
parent bbee4a7248
commit df1b00c454
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd)
chmod 303 easy-perm/*
challenge() {
submitted=$(bash "$script_dirS"/student/easy-perm.sh && ls -l "$1")
expected=$(bash "$script_dirS"/solutions/easy-perm.sh && ls -l "$1")
submitted=$(bash "$script_dirS"/student/easy-perm.sh && ls -l "$1" | awk '{print $1}')
expected=$(bash "$script_dirS"/solutions/easy-perm.sh && ls -l "$1" | awk '{print $1}')
diff <(echo "$submitted") <(echo "$expected")
}