~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/init-tree

  • 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 Jan Hudec
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
 
    options="dir|d=f style|s=s help|h=f H=f"
11
 
    . "$abadir/getopt"
12
 
 
13
 
    if test -n "$style" -a \! -r "$HOME/.arch-params/=$style"; then
14
 
        echo "* Unknown style: $style ($HOME/.arch-params/=$style does not exist" >&2
15
 
        exit 1
16
 
    fi
17
 
 
18
 
    echo "* Initialising the tree"
19
 
    tla init-tree "$@" || exit $?
20
 
    style=${style:-method}
21
 
    if [ -r "$HOME/.arch-params/=tagging-$style" ]; then
22
 
        echo "* Installing $HOME/.arch-params/=tagging-$style as id-tagging-method"
23
 
        cp "$HOME/.arch-params/=tagging-$style" "{arch}/=tagging-method"
24
 
    fi
25
 
}
26
 
 
27
 
cmd_help () {
28
 
    aba_omit_last 1 tla init-tree -h
29
 
    cat <<EOH
30
 
  -s, --style ST use =tagging-ST as template for tagging method.
31
 
 
32
 
EOH
33
 
}
34
 
 
35
 
cmd_ext_help () {
36
 
    cat <<EOH
37
 
Initialize DIR as a new project tree.
38
 
 
39
 
An empty patch-log for VERSION will be created, and VERSION
40
 
will be made the default location for check-ins.
41
 
 
42
 
~/.arch-params/=tagging-method will be used as default
43
 
id-tagging-method, if it exists.
44
 
 
45
 
EOH
46
 
}
47
 
 
48
 
cmd_desc () {
49
 
    :
50
 
}
51
 
 
52
 
aba_run "$@"
53
 
# arch-tag: 18166a7a-df84-4540-afe3-4f467f2fbb86