diff options
author | Cory Fields <theuni-nospam-@xbmc.org> | 2012-12-14 18:55:38 -0500 |
---|---|---|
committer | Cory Fields <theuni-nospam-@xbmc.org> | 2012-12-14 18:55:38 -0500 |
commit | 3426673effeff9d5c64f29b5434f649e510ceacc (patch) | |
tree | 4a1d69e42814dd646719f03683e3320b518727c3 /tools | |
parent | 23c5ce51da3cdc5120e1b8a4197745845eb234c2 (diff) |
[droid] fix cloning of pvr repo when new branches/tags are created
Diffstat (limited to 'tools')
-rw-r--r-- | tools/android/depends/xbmc-pvr-addons/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/android/depends/xbmc-pvr-addons/Makefile b/tools/android/depends/xbmc-pvr-addons/Makefile index 0920df3f82..558bf79070 100644 --- a/tools/android/depends/xbmc-pvr-addons/Makefile +++ b/tools/android/depends/xbmc-pvr-addons/Makefile @@ -22,7 +22,7 @@ $(GIT_DIR)/HEAD: cd $(TARBALLS_LOCATION); git clone --bare $(BASE_URL) $(GIT_DIR)/current/$(VERSION): $(GIT_DIR)/HEAD $(DEPS) - git rev-list -1 $(VERSION) >/dev/null || git fetch -a + git rev-list -1 $(VERSION) >/dev/null || git fetch origin "+refs/heads/*:refs/remotes/origin/*" git rev-list -1 $(VERSION) >/dev/null rm -rf $(GIT_DIR)/current; mkdir -p $(GIT_DIR)/current touch $@ |