~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/find-changed-files.sh

  • Committer: Aaron Bentley
  • Date: 2011-10-14 14:15:52 UTC
  • mto: (14128.3.18 mustache-bugs)
  • mto: This revision was merged to the branch mainline in revision 14152.
  • Revision ID: aaron@canonical.com-20111014141552-2sylz2maa8gkfjna
Ignore changed symlinks in find-changed-files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
    # bzr diff failed
38
38
    exit 1
39
39
fi
40
 
# Extract filename from status line.  Strip the @ that mark symlinks.
 
40
# Extract filename from status line.  Skip symlinks.
41
41
files=`bzr st --short $rev_option |
42
 
    sed -e '/^.[MN]/!d; s/.* //' -e 's/@$//'`
 
42
    sed -e '/^.[MN]/!d; s/.* //' -e '/@$/d'`
43
43
 
44
44
echo $files
45
45