Remove some red messages

This commit is contained in:
flyingscorpio@arch-desktop 2020-03-28 12:45:24 +01:00
parent d20a094d17
commit 4f2ab0ea8a

View file

@ -8,11 +8,9 @@ set_up_2px_repo() {
echo "Setting up $repo_name..."
if [ -e ~/"$folder""$repo_name" ]; then
echo "${GREEN}$repo_name is already there, updating...${NC}"
echo "${RED}Going into ~/${folder}${repo_name}${NC}"
cd ~/"$folder""$repo_name" && git pull
else
echo "${ORANGE}Cloning new $repo_name...${NC}"
echo "${RED}Going into ~/${folder}${NC}"
cd ~/"$folder" && git clone ssh://flyingscorpio@2px.info.tm/~/repos/"$repo_name".git
fi
@ -26,11 +24,9 @@ set_up_gitlab_repo() {
echo "Setting up $repo_owner/$repo_name..."
if [ -e ~/"$folder""$repo_name" ]; then
echo "${GREEN}$repo_name is already there, updating...${NC}"
echo "${RED}Going into ~/${folder}${repo_name}${NC}"
cd ~/"$folder""$repo_name" && git pull
else
echo "${ORANGE}Cloning new $repo_name...${NC}"
echo "${RED}Going into ~/${folder}${NC}"
cd ~/"$folder" && git clone https://gitlab.com/"$repo_owner"/"$repo_name".git
fi