diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-12-19 21:17:48 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-12-19 21:17:48 +0000 |
commit | f7bd105db3cf74fb6d2bfed726cf5d187cb1109f (patch) | |
tree | 0077803fc32f39b293b3860f6ffa765eefcec94f /goTidy | |
parent | 6d3af72bf2b333798eba7b88075fccab9441519f (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-- | goTidy | 17 |
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 |