#!/usr/bin/env bash

if [[ $(ls | grep -c todo.txt) > 0 ]]; then
    echo "Warning Submission Incomplete: submission contains file todo.txt, which should have been deleted."
    exit 1
fi

if [[ $(ls | grep -c comets) < 1 ]]; then
    echo "Warning Submission Incomplete: submission is missing a directory named comets containing at least one file, which should have been created."
    exit 1
fi

echo "Submission Passed Basic Scan"
exit 0
