diff --git a/clone_projects.sh b/clone_projects.sh index b21a56f..a81793c 100644 --- a/clone_projects.sh +++ b/clone_projects.sh @@ -189,6 +189,15 @@ else cd ~/SRC && git clone https://gitlab.com/flyingscorpio/TicTacToe.git fi +echo "Setting up TorNoVPN..." +if [ -e ~/SRC/TorNoVPN ]; then + echo "${GREEN}TorNoVPN is already there, updating...${NC}" + cd ~/SRC/TorNoVPN && git pull +else + echo "${ORANGE}Cloning new TorNoVPN...${NC}" + cd ~/SRC && git clone https://gitlab.com/flyingscorpio/TorNoVPN.git +fi + echo "Setting up WhitespaceInterpreter..." if [ -e ~/SRC/WhitespaceInterpreter ]; then echo "${GREEN}WhitespaceInterpreter is already there, updating...${NC}"