summaryrefslogtreecommitdiff
path: root/bin/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pkg')
-rwxr-xr-xbin/pkg15
1 files changed, 12 insertions, 3 deletions
diff --git a/bin/pkg b/bin/pkg
index af456bb..035cfab 100755
--- a/bin/pkg
+++ b/bin/pkg
@@ -238,7 +238,18 @@ function vcs_log {
}
function vcs_upgrade {
- git pull
+ typeset IFS=$'\n' line
+ typeset branch
+ for line in $(git branch); {
+ [[ $line == \*\ * ]] && branch=${line#* }
+ }
+ if [[ $branch != master ]] {
+ warn "$1: The currently checked out branch is not master, but '$branch'" \
+ "Currently, pkg can only operate on the branch master" \
+ " -> skipping repo, please fix manually or report a bug"
+ return 1
+ }
+ git pull $PKG_ROOT/${PWD:t} master
vcs_fix_origin
}
@@ -257,8 +268,6 @@ function vcs_fix_origin {
if [[ ! -r .git/remotes/origin && ! -r .git/refs/remotes/origin/HEAD ]] {
fgrep '[remote "origin"]' .git/config &> /dev/null ||
git remote add origin $PKG_ROOT/${PWD:t}
- git config branch.master.remote origin
- git config branch.master.merge refs/heads/master
}
git remote update &> /dev/null
}