git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* pre-commit hook and Aspell
@ 2010-07-30  8:51 Stefan Bienert
  2010-07-30 15:59 ` Junio C Hamano
  2010-07-30 18:21 ` Jeff King
  0 siblings, 2 replies; 3+ messages in thread
From: Stefan Bienert @ 2010-07-30  8:51 UTC (permalink / raw)
  To: git

Hi gits,

as instructed by the wiki, I just sent an request to the list without
being subscribed...

I'm trying to setup a hook for my project which forces me to check the
spelling of text (here: TeX) files, whenever they change. As
spellchecker I use Aspell, which is giving me a headache at the moment.
The problem is: Running the pre-commit script in the shell works,
started as hook does not.

Here is my script (cut down to a minimalist version resembling the problem):

# SNIP
#!/bin/sh

for my_p in $(git status --porcelain | awk '{ if ($0 ~ /\.(tex|sty)$/) {
print $2 } }')
do
    aspell -c -l en_GB -p $(pwd)/${my_cdup}share/dict/aspell.corb.pws
$my_p || exit 1
done
# SNAP

regards,

Stefan

-- 
Stefan Bienert
Zentrum fuer Bioinformatik
Universitaet Hamburg
Bundesstrasse 43
20146 Hamburg
Germany

Email: bienert@zbh.uni-hamburg.de
Phone:  +49 (40) 42838 7345
Fax:    +49 (40) 42838 7332

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-07-30 18:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-30  8:51 pre-commit hook and Aspell Stefan Bienert
2010-07-30 15:59 ` Junio C Hamano
2010-07-30 18:21 ` Jeff King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).