summaryrefslogtreecommitdiff
path: root/bin/pkg
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2008-12-23 22:09:51 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2008-12-23 22:09:51 +0100
commit3722c509b43172f9d8bb90010e7a81307982c818 (patch)
treecbdfbcf91b65d2b000b7bd90f3a4c8cfbe155ced /bin/pkg
parentba21ff1fee59845e4b6dfdf085a50470c7b9dcf5 (diff)
pkg: Call git remote update after pulling/pushing
Diffstat (limited to 'bin/pkg')
-rwxr-xr-xbin/pkg2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/pkg b/bin/pkg
index f1a7ddc..97431b4 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -230,10 +230,12 @@ function vcs_log {
function vcs_upgrade {
git pull $PKG_ROOT/${PWD:t} master
+ git remote update
}
function vcs_push {
git push $PKG_ROOT/${PWD:t} master
+ git remote update
}
function vcs_status {