Aleksa Sarai

Results 791 comments of Aleksa Sarai

For reference, here is a Dockerfile which reliably triggered this issue: ``` FROM alpine:3.19 AS base USER root RUN mkdir -p /target/dir /links1 /links2 ; \ touch /target/dir/foo ; \...

The `getFollowParentLinks` thing that exists in one patch and is removed in another is a bit unfortunate but I don't see a nice way of splitting the fixes to `getFollowLinks`...

Maybe I should get a dummy PR merged so you don't need to re-trigger the CI :sweat_smile:.

Yeah, I looked at `fsutil` earlier and it does have bugs with symlink resolution (in short, anything that does `filepath.Join(foo, bar.Linkname)` or `filepath.Clean(bar.Linkname)` probably has bugs). However, it wasn't clear...

Hmmm, this isn't sufficient. `bats_forward_output_for_parallel_tests` and all of that infrastructure is designed to output things in-order...

GNU Parallel doesn't interleave output by default (the management process waits for the job to finish then outputs the collected stdout and stderr in one go). You can enable interleaving...

The issue is that currently `bats -j` doesn't print _anything_ until the entire test suite has finished. The goal of this PR is to make it so that (like `bats`...

Oh, now I see what you meant by: > Well then you still dont get intermediate Output, Theo only improvement would be to not wait on slower earlier tests. Because...

I'm confused why the doc building validation is failing with Go compilation errors: ``` go: cannot find main module, but -modfile was set. -modfile cannot be used to set the...