diff --git a/clone_projects.sh b/clone_projects.sh index b758e2b..3764cda 100644 --- a/clone_projects.sh +++ b/clone_projects.sh @@ -184,6 +184,15 @@ else cd ~/SRC && git clone https://gitlab.com/flyingscorpio/Roboc-console.git fi +echo "Setting up ScheduleTimer..." +if [ -e ~/SRC/ScheduleTimer ]; then + echo "${GREEN}ScheduleTimer is already there, updating...${NC}" + cd ~/SRC/ScheduleTimer && git pull +else + echo "${ORANGE}Cloning new ScheduleTimer...${NC}" + cd ~/SRC && git clone https://gitlab.com/flyingscorpio/ScheduleTimer.git +fi + echo "Setting up SudokuSolver..." if [ -e ~/SRC/SudokuSolver ]; then echo "${GREEN}SudokuSolver is already there, updating...${NC}"