-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
update.sh
executable file
·36 lines (30 loc) · 1.38 KB
/
update.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#! /usr/bin/env bash
###################################################################################################
###################################################################################################
### Git repository update script for Happy-Dude's dotfiles repository
###
### Author: Stanley Chan
### Github: https://github.com/Happy-Dude/dotfiles.git
### Version: 14 April 2013
###
### Based on information from:
### Christophe Portneuve: https://medium.com/@porteneuve/mastering-git-submodules-34c65e940407
###
###################################################################################################
###################################################################################################
# Check if Git is installed update all submodules
`which git` --version 2>&1 >/dev/null # improvement by tripleee
GIT_IS_AVAILABLE=$?
if [ $GIT_IS_AVAILABLE -eq 0 ]; then
GIT_PATH=`which git`
GIT_OPTS="submodule foreach --recursive"
echo "Git found: pulling latest updates for Happy-Dude's dotfiles repo"
$GIT_PATH pull
$GIT_PATH submodule sync --recursive
$GIT_PATH submodule update --init --recursive
$GIT_PATH submodule update --remote --rebase --
# $GIT_PATH $GIT_OPTS $GIT_PATH $GIT_OPTS $GIT_PATH pull
#$GIT_PATH $GIT_OPTS $GIT_PATH pull
else
echo "Git not found\; please get latest updates for repository submodules manually"
fi