diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-03 22:28:55 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-03 22:28:55 +0200 |
commit | 5f3d6ae75344786ec9708fc3617960deff6ca9c6 (patch) | |
tree | 636646146def67b7fa3a05e968400492ac37f2e0 /bin/pkg | |
parent | 93aeb007f8886ff045fc010ab9f45c0473f03c04 (diff) |
pkg: Renamed vcs_upgrade to vcs_pull
Diffstat (limited to 'bin/pkg')
-rwxr-xr-x | bin/pkg | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -240,7 +240,7 @@ function vcs_log { git log } -function vcs_upgrade { +function vcs_pull { typeset IFS=$'\n' line typeset branch for line in $(git branch); { @@ -690,7 +690,7 @@ function pkg_upgrade { clear_line info "Updating $1 to $(list_remote_version $1)\n" global_hook $1 pre-update - vcs_upgrade + vcs_pull global_hook $1 post-update fi } |