Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: native_client_sdk/src/documentation/check.sh

Issue 16972010: Dropping nacl sdk dead code (documentation, project_template). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « native_client_sdk/src/documentation/build.scons ('k') | native_client_sdk/src/documentation/footer.dox » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/documentation/check.sh
diff --git a/native_client_sdk/src/documentation/check.sh b/native_client_sdk/src/documentation/check.sh
deleted file mode 100755
index ce3b49f4c2540b4c07f5dd1616da3074331c06ac..0000000000000000000000000000000000000000
--- a/native_client_sdk/src/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
« no previous file with comments | « native_client_sdk/src/documentation/build.scons ('k') | native_client_sdk/src/documentation/footer.dox » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698