# HG changeset patch # User John W. Eaton # Date 1630089798 14400 # Node ID e663de12c34de98f2bb83e87474b2b36ce9ed906 # Parent 34a08c41b29b17b78697835795acd3f6f03e5d0c branch fixes? diff -r 34a08c41b29b -r e663de12c34d master.cfg --- a/master.cfg Fri Aug 27 14:26:16 2021 -0400 +++ b/master.cfg Fri Aug 27 14:43:18 2021 -0400 @@ -281,9 +281,11 @@ def mk_octave_hg_update_step (repo, branch): return Mercurial (repourl = repo, - defaultBranch = branch, branchType = "inrepo", - workdir = "src", mode = "full", method = "fresh", - haltOnFailure = True) + defaultBranch = branch, + branchType = "inrepo", mode = "full", method = "fresh", + alwaysUseLatest = True, + haltOnFailure = True, + workdir = "src") def mk_octave_bootstrap_step (nice = 0): boot_cmd = build_cmd_list ("./bootstrap", nice = nice) @@ -629,9 +631,11 @@ def mk_mxe_octave_hg_update_step (repo, mxe_branch): return Mercurial (repourl = repo, - defaultBranch = mxe_branch, branchType = "inrepo", - workdir = "src", mode = "full", method = "fresh", - haltOnFailure = True) + defaultBranch = mxe_branch, + branchType = "inrepo", mode = "full", method = "fresh", + alwaysUseLatest = True, + haltOnFailure = True, + workdir = "src") def mk_mxe_octave_bootstrap_step (nice = 0):