diff options
author | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-28 20:45:02 +0000 |
---|---|---|
committer | jond@google.com <jond@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-28 20:45:02 +0000 |
commit | 7d21a04e49c86f192148a9a6461138f409906858 (patch) | |
tree | b9c53d0f05050a52d29b853f63bb2c625558633f /ppapi/documentation/check.sh | |
parent | 96d11bfc135df31e07e7901953a2d3a615b82de0 (diff) | |
download | chromium_src-7d21a04e49c86f192148a9a6461138f409906858.zip chromium_src-7d21a04e49c86f192148a9a6461138f409906858.tar.gz chromium_src-7d21a04e49c86f192148a9a6461138f409906858.tar.bz2 |
We now have documentation directories specific to c and cpp (under these two directories)
Review URL: http://codereview.chromium.org/6903108
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83395 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/documentation/check.sh')
-rwxr-xr-x | ppapi/documentation/check.sh | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/ppapi/documentation/check.sh b/ppapi/documentation/check.sh deleted file mode 100755 index ce3b49f..0000000 --- a/ppapi/documentation/check.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -# simple script to check html via tidy. Either specify html files on -# command line or rely on default which checks all html files in -# current directory -set -o nounset -set -o errexit - - -CheckFile () { - echo "========================================" - echo "checking $1" - echo "========================================" - tidy -e -q $1 -} - - -if [ $# -eq 0 ] ; then - for file in *.html ; do - CheckFile ${file} - done -else - for file in $* ; do - CheckFile ${file} - done -fi |