1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/bin/sh
# Copyright (C) 2004 Aaron Bentley
#
# See the file "COPYING" for further information about
# the copyright and warranty status of this work.
. "$abadir/aba-lib"
cmd_exec()
{
aba_change_version $1
}
cmd_desc()
{
echo ' change-version : changes tree to the specified version'
}
cmd_help()
{
echo "This changes the current version to the specified version or revision"
}
cmd_ext_help()
{
echo -n
}
aba_run "$@"
# arch-tag: change-version by Aaron Bentley (15:17 Jan 30, 2004)
|