Kevin van Zonneveld

Results 198 comments of Kevin van Zonneveld

We can also connect to public IP, but that might not fly depending on your setup indeed. It's worth testing though, since that would solve a lot of complexity. If...

Thanks for the patch but `resolvconf+="nameserver $ns\n"` doesn't look like bash?

Looks like it. But only as of bash 3.1. For the sake for portability I think I'd prefer `full="first${surname}"`. Also would like the code style to match. It also is...

Not sure. I don't have a similar setup at my disposal, but could you try uncommenting the `# set -o xtrace` fine in the header of the hook? It will...

Maybe something goes wrong with the stdin redirection. Can you try by adding `tmp="${TMPDIR:-/tmp}/${$}.${ext}"` to the php section, e.g. here? https://github.com/kvz/ochtra/blob/master/pre-commit#L93 (just like for python, yaml, etc) (let's focus on...

Maybe pipefail doesn't work. What if you try wihout paint? e.g. `if ! git cat-file -p ${sha} | ${cmd}; then` on line 122 Also, what is your bash version? `bash...

`paint` is a function declared higher up in the file. It's just cosmetics, giving stdout & stderr a color. I was thinking that it prevented the php exit code from...

How did you install ochtra? If it's a symlink, the current directory will not be your project's, and jshint will not be able to travel upwards until it finds your...

Hm. and what if you point jshint to your rc file via `--config`? Just to start ruling things out?