From e9944a7d4115a4d314e3e0655762384a68722aef Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Fri, 22 Nov 2013 17:05:28 +0000 Subject: plugins: Use new build command as default The old build is still around for comparison. --- morphlib/plugins/branch_and_merge_plugin.py | 2 +- morphlib/plugins/build_plugin.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/morphlib/plugins/branch_and_merge_plugin.py b/morphlib/plugins/branch_and_merge_plugin.py index 454caade..4666ea96 100644 --- a/morphlib/plugins/branch_and_merge_plugin.py +++ b/morphlib/plugins/branch_and_merge_plugin.py @@ -65,7 +65,7 @@ class BranchAndMergePlugin(cliapp.Plugin): self.app.add_subcommand('old-unpetrify', self.unpetrify) self.app.add_subcommand( 'tag', self.tag, arg_synopsis='TAG-NAME -- [GIT-COMMIT-ARG...]') - self.app.add_subcommand('build', self.build, + self.app.add_subcommand('old-build', self.build, arg_synopsis='SYSTEM') self.app.add_subcommand('old-status', self.status) self.app.add_subcommand('old-branch-from-image', diff --git a/morphlib/plugins/build_plugin.py b/morphlib/plugins/build_plugin.py index f304e59a..8e04d0b3 100644 --- a/morphlib/plugins/build_plugin.py +++ b/morphlib/plugins/build_plugin.py @@ -26,7 +26,7 @@ class BuildPlugin(cliapp.Plugin): def enable(self): self.app.add_subcommand('build-morphology', self.build_morphology, arg_synopsis='(REPO REF FILENAME)...') - self.app.add_subcommand('new-build', self.build, + self.app.add_subcommand('build', self.build, arg_synopsis='SYSTEM') def disable(self): -- cgit v1.2.1