Skip to content

localtest: Avoid recursion!

Emanuele Aina requested to merge wip/em/localtest-avoid-recursion into master

The ./localtest script was skipping the lint job, not the lint stage, so when I added the job to exercise ./localtest itself during the lint stage I have caused ./localtest to appear in its own output, which means that if you pipe it into a shell it will call itself. Luckily recursion will stop there and this is about not doing something pointless rather than actually fixing something broken.

Merge request reports