Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar-jhbuild
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-01-21 14:12:24 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-01-21 14:12:24 (GMT)
commit37663159dc35721c00081c1f0d974e83f4566e99 (patch)
treec7f77425b79a7ad050a527e4cd2d69be31b5d28e /sugar-jhbuild
parent8cb9f1b56192c579164672921be1741b8ad913a5 (diff)
Checkout jhbuild before trying to use it
Diffstat (limited to 'sugar-jhbuild')
-rwxr-xr-xsugar-jhbuild9
1 files changed, 5 insertions, 4 deletions
diff --git a/sugar-jhbuild b/sugar-jhbuild
index 6c3135c..f7da027 100755
--- a/sugar-jhbuild
+++ b/sugar-jhbuild
@@ -6,16 +6,17 @@ import sys
base_dir = os.path.abspath(os.path.dirname(__file__))
sys.path.append(os.path.join(base_dir, 'build-scripts', 'jhbuild'))
+from updater import Updater
+
+updater = Updater(base_dir)
+updater.update()
+
import jhbuild.commands
import bundlemodule
import sanitycheck
from config import Config
-from updater import Updater
-
-updater = Updater(base_dir)
-updater.update()
config = Config(base_dir)