diff options
author | Bill Nottingham <notting@redhat.com> | 1999-08-20 16:02:55 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-08-20 16:02:55 +0000 |
commit | 9a664257059c25efc727d746a9f86472588113c0 (patch) | |
tree | 097a079323345de4096f31602f3dc6d0bcfed820 /Makefile | |
parent | 2be79097a599732951cd7c9155609d9bda107572 (diff) | |
download | initscripts-9a664257059c25efc727d746a9f86472588113c0.tar initscripts-9a664257059c25efc727d746a9f86472588113c0.tar.gz initscripts-9a664257059c25efc727d746a9f86472588113c0.tar.bz2 initscripts-9a664257059c25efc727d746a9f86472588113c0.tar.xz initscripts-9a664257059c25efc727d746a9f86472588113c0.zip |
don't check csh file with bash
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |