summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfedpkg-pull-build-chain3
1 files changed, 2 insertions, 1 deletions
diff --git a/fedpkg-pull-build-chain b/fedpkg-pull-build-chain
index f72acff..d95991a 100755
--- a/fedpkg-pull-build-chain
+++ b/fedpkg-pull-build-chain
@@ -149,9 +149,10 @@ def main():
print "Running fedpkg-vcs"
notify_state('upstream-vcs', { 'module': arg })
- args = ['fedpkg-vcs', 'pull-update', '--status-file=' + os.path.abspath('pull-status')]
+ args = ['fedpkg-vcs', '--status-file=' + os.path.abspath('pull-status')]
if force or not last_build_succeeded:
args.append('--force')
+ args.extend(['pull-retarget', 'HEAD'])
try:
check_call_verbose(args, stdout=sys.stdout, stderr=sys.stderr, cwd=release_dir)
except subprocess.CalledProcessError, e: