aboutsummaryrefslogtreecommitdiffstats
path: root/goTidy
diff options
context:
space:
mode:
authorManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-12-19 21:17:48 +0000
committerManuel Canales Esparcia <manuel@linuxfromscratch.org>2004-12-19 21:17:48 +0000
commitf7bd105db3cf74fb6d2bfed726cf5d187cb1109f (patch)
tree0077803fc32f39b293b3860f6ffa765eefcec94f /goTidy
parent6d3af72bf2b333798eba7b88075fccab9441519f (diff)
Updated the stylesheets and Makefile.
Removed contrib/, index-pdf.xml and goTidy. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4428 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'goTidy')
-rw-r--r--goTidy17
1 files changed, 0 insertions, 17 deletions
diff --git a/goTidy b/goTidy
deleted file mode 100644
index e2f4eed02..000000000
--- a/goTidy
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-#######################################################################
-#
-# File: goTidy
-#
-# Description: Tidy is best used inside a loop, but Makefiles don't do
-# bash loops well. This file alleviates that problem.
-#
-# Author: James Robertson
-#
-########################################################################
-
-for file in `find "$1" -name "*.html"`; do
- tidy -config tidy.conf $file
-done
-
-exit 0