Pull from default rather than tip to get around problems with named branches on tinderboxes. no bug, r=gozer over irc
Pull from default rather than tip to get around problems with named branches on tinderboxes. no bug, r=gozer over irc
--- a/client.py
+++ b/client.py
@@ -7,28 +7,28 @@ CHATZILLA_CO_TAG = 'HEAD'
VENKMAN_CO_TAG = 'HEAD'
EXTENSION_DIRS = ('extensions/wallet',)
LDAPCSDK_DIRS = ('directory/c-sdk',)
CHATZILLA_DIRS = ('extensions/irc',)
VENKMAN_DIRS = ('extensions/venkman',)
-DEFAULT_COMM_REV = "tip"
+DEFAULT_COMM_REV = "default"
# URL of the default hg repository to clone for Mozilla.
DEFAULT_MOZILLA_REPO = 'http://hg.mozilla.org/releases/mozilla-1.9.1/'
-DEFAULT_MOZILLA_REV = "tip"
+DEFAULT_MOZILLA_REV = "default"
# REGEX to match against, $1 should refer to protocol scheme
MOZILLA_TRUNK_REPO_REGEXP = "(ssh|http|https):\/\/hg\.mozilla\.org\/mozilla-central\/$"
MOZILLA_BASE_REV = "GECKO_1_9_1_BASE"
# URL of the default hg repository to clone for inspector.
DEFAULT_INSPECTOR_REPO = 'http://hg.mozilla.org/dom-inspector/'
-DEFAULT_INSPECTOR_REV = "tip"
+DEFAULT_INSPECTOR_REV = "default"
import os
import sys
import datetime
from optparse import OptionParser
topsrcdir = os.path.dirname(__file__)
if topsrcdir == '':