diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-21 18:53:09 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-21 18:53:09 +0200 |
commit | 220b47054d900c0139bde5981728f5f13402301c (patch) | |
tree | b0f96db9867fd967d8d8b20d3826de390e4df32b /bin/pkg | |
parent | 58674c7d9ac958e26c39ae27feca5f30159a648b (diff) |
pkg: vcs_branch_master: This can only be an error with GIT_USE_ORIGIN=0
Diffstat (limited to 'bin/pkg')
-rwxr-xr-x | bin/pkg | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -252,8 +252,8 @@ function vcs_branch_master { } if [[ $branch != master ]] { warn "$1: The currently checked out branch is not master, but '$branch'\n" \ - "Currently, pkg can only operate on the branch master\n" \ - " -> skipping repo, please fix manually or report a bug\n" + "Currently, with GIT_USE_ORIGIN=0, pkg can only operate on the branch master\n" \ + " -> skipping repo, please fix manually\n" return 1 } } |