~abentley/bzrtools/bzrtools.dev

147.1.3 by Robert Collins
test and deliver basic pending-merges into bzr so that merging is recorded
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
cmd_exec()
10
{
11
  tla my-revision-library "$@"
12
}
13
cmd_desc()
14
{
15
  echo '                  my-library : alias for my-revision-library'
16
}
17
cmd_help()
18
{
19
   tla my-revision-library -h|sed "s/tla my-revision-library/$abaname my-library/g";
20
}
21
cmd_ext_help()
22
{
23
   tla my-revision-library -H|sed "s/tla my-revision-library/$abaname my-library/g";
24
}
25
26
aba_run_tlawrap "$@"
27
28
29
# arch-tag: my-library by Aaron Bentley (12:18 Jan 15, 2004)