aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>1999-08-20 16:02:55 +0000
committerBill Nottingham <notting@redhat.com>1999-08-20 16:02:55 +0000
commit9a664257059c25efc727d746a9f86472588113c0 (patch)
tree097a079323345de4096f31602f3dc6d0bcfed820
parent2be79097a599732951cd7c9155609d9bda107572 (diff)
downloadinitscripts-9a664257059c25efc727d746a9f86472588113c0.tar
initscripts-9a664257059c25efc727d746a9f86472588113c0.tar.gz
initscripts-9a664257059c25efc727d746a9f86472588113c0.tar.bz2
initscripts-9a664257059c25efc727d746a9f86472588113c0.tar.xz
initscripts-9a664257059c25efc727d746a9f86472588113c0.zip
don't check csh file with bash
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c8d1fc78..e2ddc7bb 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ install:
chmod og=rwx,o=rx /var/run/netreport
check:
- for afile in `find . -type f -perm +111 ` ; do \
+ for afile in `find . -type f -perm +111|grep -v \.csh ` ; do \
bash -n $$afile || { echo $$afile ; exit 1 } ; \
done