Change URLs into my own URLs.

Signed-off-by: Jacob Kiers <jacob@jacobkiers.net>
This commit is contained in:
2014-01-10 20:11:59 +01:00
committed by Jacob Kiers
parent b20e7d9912
commit 8460c1a619
5 changed files with 14 additions and 14 deletions

View File

@ -3,7 +3,7 @@
Installs git, clones repository and symlinks dotfiles to your home directory
```bash
curl https://raw.github.com/sapegin/dotfiles/master/install/install.sh | bash
curl https://bitbucket.org/jacobkiers/dotfiles/raw/master/install/install.sh | bash
```
@ -12,13 +12,13 @@ curl https://raw.github.com/sapegin/dotfiles/master/install/install.sh | bash
You can put it to subdomain on you hosting and use short path. For example:
```bash
curl dot.sapegin.me | bash
curl dot.jacobkiers.net | bash
```
Copy install script to your public directory:
```bash
curl -O https://raw.github.com/sapegin/dotfiles/master/install/install.sh
curl -O https://bitbucket.org/jacobkiers/dotfiles/raw/master/install/install.sh
```
And add to your `.htacess`:
@ -26,4 +26,4 @@ And add to your `.htacess`:
```
RewriteEngine on
RewriteRule (.*) /install.sh [L]
```
```

View File

@ -17,7 +17,7 @@ fi
# Clone dotfiles and make symlinks
echo "Installing dotfiles..."
cd ~ && git clone git@github.com:sapegin/dotfiles.git && cd dotfiles && ./sync.py
cd ~ && git clone git@bitbucket.org:jacobkiers/dotfiles.git && cd dotfiles && ./sync.py
source ~/.bashrc
echo "Dotfiles installed successfully."