summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-04-21 18:53:09 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-04-21 18:53:09 +0200
commit220b47054d900c0139bde5981728f5f13402301c (patch)
treeb0f96db9867fd967d8d8b20d3826de390e4df32b
parent58674c7d9ac958e26c39ae27feca5f30159a648b (diff)
pkg: vcs_branch_master: This can only be an error with GIT_USE_ORIGIN=0
-rwxr-xr-xbin/pkg4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pkg b/bin/pkg
index f78ff98..3269ed0 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -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
}
}