You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo -e "${RED}Errors are located in compileErrors.txt"
echo -e "${NC}"
exit 1
fi
rm ./compileErrors.txt
test -f "./Makefile"
if [[ $? -ne 0 ]]; then
echo -e "${RED}No Makefile. Please create a file called Makefile that compiles your code"
echo -e "${NC}"
exit 1
fi
zip -r USER-submission -r Makefile include/ mains/ src/ measure.py override.token
echo -e "${GREEN}Zip file successfully created"
echo -e "${GREEN}Rename USER-submission with your username (for example, lukebeukelman-submission), then submit to gradescope for the coresponding deliverable"