From 63836c5e40284eb9c4e98a0cf43988506fdd8576 Mon Sep 17 00:00:00 2001 From: Tim Byrne Date: Fri, 3 Feb 2017 07:38:57 -0600 Subject: [PATCH] Add choice for GitLab --- bootstrap | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/bootstrap b/bootstrap index 50680c3..24f31fe 100755 --- a/bootstrap +++ b/bootstrap @@ -55,9 +55,10 @@ function build_url() { echo echo " 1. GitHub" echo " 2. Bitbucket" - echo " 3. Other" + echo " 3. GitLab" + echo " 4. Other" echo - read -r -p "Where is your repo? (1/2/3) ->" choice < /dev/tty + read -r -p "Where is your repo? (1/2/3/4) ->" choice < /dev/tty case $choice in 1) REPO_URL="https://github.com/" @@ -65,6 +66,9 @@ function build_url() { 2) REPO_URL="https://bitbucket.org/" ;; + 3) + REPO_URL="https://gitlab.com/" + ;; *) echo echo Please specify the full URL of your dotfiles repo