summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pyfedpkg/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/pyfedpkg/__init__.py b/src/pyfedpkg/__init__.py
index 622717b..1e8b798 100644
--- a/src/pyfedpkg/__init__.py
+++ b/src/pyfedpkg/__init__.py
@@ -994,8 +994,11 @@ class PackageModule:
# pushed or not
branch = self.repo.active_branch
remote = self.repo.git.config('--get',
- 'branch.%s.merge' % branch).replace('refs/heads', 'origin')
- if self.repo.git.rev_list('%s...%s' % (branch, remote)):
+ 'branch.%s.remote' % branch)
+
+ merge = self.repo.git.config('--get',
+ 'branch.%s.merge' % branch).replace('refs/heads', remote)
+ if self.repo.git.rev_list('%s...%s' % (branch, merge)):
raise FedpkgError('There are unpushed changes in your repo')
# Get the commit hash to build
commit = self.repo.iter_commits().next().sha