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 11:51:33 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-01-21 11:51:33 (GMT)
commitd6738638c11365350cb7721763dcd470fbf8b7b6 (patch)
tree49272a94d350b409cd92503cb9ddd74468f717c9 /sugar-jhbuild
parenteb200d2facbe5617e2ee5ebdf7cab111ee549f26 (diff)
Get framework/activities installation back
Diffstat (limited to 'sugar-jhbuild')
-rwxr-xr-xsugar-jhbuild11
1 files changed, 7 insertions, 4 deletions
diff --git a/sugar-jhbuild b/sugar-jhbuild
index aecca99..828cff8 100755
--- a/sugar-jhbuild
+++ b/sugar-jhbuild
@@ -9,14 +9,17 @@ sys.path.append(os.path.join(base_dir, 'build-scripts', 'jhbuild'))
import jhbuild.commands
from config import Config
+import bundlemodule
config = Config(base_dir)
+args = []
+command = 'build'
+
+if len(sys.argv) > 0:
+ command = sys.argv[1]
+
if len(sys.argv) > 1:
- command = sys.argv[1]
args = sys.argv[2:]
-else:
- command = 'build'
- args = sys.argv[1:]
jhbuild.commands.run(command, config, args)