Skip to content

Commit

Permalink
Add choice for GitLab
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLocehiliosan committed Feb 3, 2017
1 parent f2b2b64 commit 63836c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,20 @@ 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/"
;;
2)
REPO_URL="https://bitbucket.org/"
;;
3)
REPO_URL="https://gitlab.com/"
;;
*)
echo
echo Please specify the full URL of your dotfiles repo
Expand Down

0 comments on commit 63836c5

Please sign in to comment.