Browse Source

fix(in-back-ground): add check for the nohup command

pull/1724/head
miguel 1 year ago committed by MSilva95
parent
commit
107d7ac4ad
  1. 6
      sh/tests/in-back-ground_test.sh

6
sh/tests/in-back-ground_test.sh

@ -27,6 +27,12 @@ challenge_no_output() {
expected=$(cd "$1" && bash "$script_dirS"/solutions/in-back-ground.sh)
diff <(echo "$submitted") <(echo "$expected")
}
if [[ $(cat $FILENAME | grep 'nohup' | wc -l) -lt 1 ]]; then
echo "The file does not contain the required commands"
exit 1
fi
challenge .
rm output.txt

Loading…
Cancel
Save