~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/mupdate

  • Committer: Robert Collins
  • Date: 2005-09-14 11:27:20 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-20050914112720-c66a21de86eafa6e
trim fai cribbage

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
 
  rev_ver=$(aba_revision_or_version $@)
13
 
  archive=$(tla parse-package-name -a $rev_ver)
14
 
  pversion=$(tla parse-package-name --package-version $rev_ver)
15
 
  if [ -n $(tla archives --names $archive-SOURCE) ]; then
16
 
    tla archive-mirror $archive-SOURCE $archive $pversion
17
 
  fi
18
 
  tla update $@
19
 
}
20
 
 
21
 
# one-liner description for aba help
22
 
cmd_desc()
23
 
{
24
 
    aba_desc $(basename $0) "Update from a mirror"
25
 
}
26
 
 
27
 
# short help for aba command -h, --help
28
 
cmd_help()
29
 
{
30
 
    cat <<EOH
31
 
Update from a mirror
32
 
usage: $abaname $(basename $0) [revision/version]
33
 
 
34
 
If the archive for the version is a local mirror, update it before running tla
35
 
update, using the version as a limit.  If unspecified, archive defaults to
36
 
default archive.  If revision or version unspecified, defaults to tree version.
37
 
No options accepted.
38
 
 
39
 
EOH
40
 
}
41
 
 
42
 
# extended help for aba command -H or aba help command
43
 
cmd_ext_help()
44
 
{
45
 
    cat <<EOH
46
 
EOH
47
 
}       
48
 
 
49
 
aba_run "$@"
50
 
#  arch-tag: mupdate by Aaron Bentley  (09:38 Apr 27 2004)