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-22 15:16:15 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-01-22 15:16:15 (GMT)
commit66d44340820537feb4d26f4e82476a4a6ad848a4 (patch)
treefe3fddfb433395b905ce99c0ba8d58d79fcfc9e4 /sugar-jhbuild
parent4f80024dcf1dcf378209f7da1f843442eaeef1ed (diff)
Default to sugar-emulator for run
Diffstat (limited to 'sugar-jhbuild')
-rwxr-xr-xsugar-jhbuild5
1 files changed, 4 insertions, 1 deletions
diff --git a/sugar-jhbuild b/sugar-jhbuild
index e4bfed2..b609760 100755
--- a/sugar-jhbuild
+++ b/sugar-jhbuild
@@ -22,6 +22,9 @@ if len(sys.argv) > 0:
command = sys.argv[1]
if len(sys.argv) > 1:
- args = sys.argv[2:]
+ args = sys.argv[2:]
+
+if command == 'run' and len(args) == 0:
+ args.append('sugar-emulator')
jhbuild.commands.run(command, config, args)