From 15f62469afed11c03e4d74286d7d82867dab3a2e Mon Sep 17 00:00:00 2001 From: Sebastian Lackner Date: Sun, 27 Mar 2016 04:06:01 +0200 Subject: [PATCH] patchupdate.py: Track the stable branch of Wine. --- staging/patchupdate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/patchupdate.py b/staging/patchupdate.py index f13294bd..00d2863c 100755 --- a/staging/patchupdate.py +++ b/staging/patchupdate.py @@ -177,7 +177,7 @@ def _latest_wine_commit(commit=None): if not os.path.isdir(config.path_wine): raise PatchUpdaterError("Please create a symlink to the wine repository in %s" % config.path_wine) if commit is None: - commit = subprocess.check_output(["git", "rev-parse", "origin/master"], cwd=config.path_wine).strip() + commit = subprocess.check_output(["git", "rev-parse", "origin/stable"], cwd=config.path_wine).strip() assert len(commit) == 40 and commit == commit.lower() return commit