~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to utilities/lint.sh

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2005-09-23 23:07:40 UTC
  • mfrom: (unknown (missing))
  • Revision ID: Arch-1:rocketfuel@canonical.com%launchpad--devel--0--patch-2483
[trivial] Implement make lintmerge.
Patches applied:

 * christian.reis@canonical.com--lozenge/launchpad--trivialities--1--patch-17
   Implementing make lintmerge, and fixing an issue with lint.sh when supplying files via the commandline

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
if [ -z "$1" ]; then
64
64
    files=`baz status | grep '^ ' | cut -c5-`
65
65
else
66
 
    files=$*
 
66
    # Add newlines so grep filters out pyfiles correctly later
 
67
    files=`echo $* | tr " " "\n"`
67
68
fi
68
69
 
69
70
if [ -z "$files" ]; then