diff options
author | Mathias Bynens <mathias@qiwi.be> | 2013-04-19 18:18:27 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2013-04-19 18:18:27 +0200 |
commit | 3753b01fc280bfac24f047064b49bddca2f79320 (patch) | |
tree | 23b907c222fd842304dc0da60295532bacfabe19 | |
parent | 1cda76f0bebee8a013962ecf9b1d438b6e77f0ea (diff) | |
download | dotfiles-3753b01fc280bfac24f047064b49bddca2f79320.tar.gz dotfiles-3753b01fc280bfac24f047064b49bddca2f79320.tar.bz2 dotfiles-3753b01fc280bfac24f047064b49bddca2f79320.zip |
bootstrap.sh: Pull from the master branch explicitly
-rwxr-xr-x | bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index b5d0623..be53776 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,6 +1,6 @@ #!/bin/bash cd "$(dirname "${BASH_SOURCE}")" -git pull +git pull origin master function doIt() { rsync --exclude ".git/" --exclude ".DS_Store" --exclude "bootstrap.sh" --exclude "README.md" -av . ~ } |