#!/usr/bin/env bash
#
url='https://git.lcarsnet.pgw.jp/gitbucket/git/kohei/dotfiles.git'
branch='master'
#
echo 'Info: Git cloning dotfiles.'
#
git clone -b "${branch}" "${url}"
#
echo 'done.'
#
cd 'dotfiles'
#
./setup.sh
return 0
