~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/aba/commands/diff

  • Committer: Aaron Bentley
  • Date: 2008-05-12 02:46:47 UTC
  • Revision ID: aaron@aaronbentley.com-20080512024647-d0bku78ku0hzv56w
Update version to 1.5

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)