~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/missing-merge

  • Committer: Robert Collins
  • Date: 2005-09-13 15:11:39 UTC
  • mto: (147.2.6) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@robertcollins.net-20050913151139-9ac920fc9d7bda31
TODOification

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
## Copyright (C) 2004 Aaron Bentley
 
3
##
 
4
## See the file "COPYING" for further information about
 
5
## the copyright and warranty status of this work.
 
6
 
 
7
. "$abadir/aba-lib"
 
8
 
 
9
# executes the command ("$@" are the arguments after the command name)
 
10
cmd_exec()
 
11
{
 
12
  aba_merge_source $1
 
13
  for source in $sourcever; do
 
14
    tla missing -sf $source
 
15
  done
 
16
}
 
17
 
 
18
# one-liner description for aba help
 
19
cmd_desc()
 
20
{
 
21
    aba_desc $(basename $0) "Does \"tla missing -sf\" for merge sources"
 
22
}
 
23
 
 
24
# short help for aba command -h, --help
 
25
cmd_help()
 
26
{
 
27
    cat <<EOH
 
28
Does "tla missing -sf" for merge sources
 
29
usage: $abaname $(basename $0) [VERSION]
 
30
 
 
31
Determines merge-sources the same way as "merge" (argument, =partner-versions,
 
32
++merge-source) and lists missing revisions by full name with summaries
 
33
 
 
34
EOH
 
35
}
 
36
 
 
37
# extended help for aba command -H or aba help command
 
38
cmd_ext_help()
 
39
{
 
40
    cat <<EOH
 
41
EOH
 
42
}       
 
43
 
 
44
aba_run "$@"
 
45
#  arch-tag: missing-merge by Aaron Bentley  (11:25 May 31 2004)