From 7d13baa11d3d3529714dbaa5e9fdbb2b15a26808 Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Thu, 26 Mar 2020 12:11:42 +0100 Subject: [PATCH] Add ScheduleTimer --- clone_projects.sh | 9 +++++++++ 1 file changed, 9 insertions(+) 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}"