Skip to content

Commit

Permalink
One more fix to allow Theme Chooser to treat devel/* as master.
Browse files Browse the repository at this point in the history
  • Loading branch information
cpinkham committed Jun 21, 2013
1 parent 8876503 commit 14d3b0d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mythtv/programs/mythbackend/backendhousekeeper.cpp
Expand Up @@ -366,6 +366,10 @@ bool ThemeUpdateTask::DoRun(void)
{
QString MythVersion = MYTH_SOURCE_PATH;

// Treat devel branches as master
if (MythVersion.startsWith("devel/"))
MythVersion = "master";

// FIXME: For now, treat git master the same as svn trunk
if (MythVersion == "master")
MythVersion = "trunk";
Expand Down

0 comments on commit 14d3b0d

Please sign in to comment.