~lutostag/ubuntu/trusty/maas/1.5.2+packagefix

« back to all changes in this revision

Viewing changes to utilities/doc-lint

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2014-03-28 10:43:53 UTC
  • mto: This revision was merged to the branch mainline in revision 57.
  • Revision ID: package-import@ubuntu.com-20140328104353-ekpolg0pm5xnvq2s
Tags: upstream-1.5+bzr2204
ImportĀ upstreamĀ versionĀ 1.5+bzr2204

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
#
 
3
# Rudimentary lint check for the documentation.
 
4
DOCS_WITH_TRAILING_SPACES="$(
 
5
    find docs -name '*.rst' -print0 |
 
6
    xargs -r0 grep -l '[[:space:]]$')"
 
7
if [ -n "$DOCS_WITH_TRAILING_SPACES" ]
 
8
then
 
9
    echo "Trailing spaces in documentation:\n$DOCS_WITH_TRAILING_SPACES" >&2
 
10
    exit 1
 
11
fi