~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/diff

  • 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
cmd_exec()
 
9
{
 
10
  if [ -n "$1" ]; then
 
11
    revision=$(aba_revision_or_version $1)
 
12
  fi
 
13
  tla changes --diffs $revision
 
14
}
 
15
cmd_desc()
 
16
{
 
17
  echo '                        diff : shortcut for tla changes --diff'
 
18
}
 
19
cmd_help()
 
20
{
 
21
  echo "It's like the CVS command."
 
22
}
 
23
cmd_ext_help()
 
24
{
 
25
  echo "Really."
 
26
}
 
27
aba_run "$@"
 
28
# arch-tag: diff by Aaron Bentley (12:16 Jan 15, 2004)