Fred Hebert

Results 389 comments of Fred Hebert
trafficstars

Ah I see. Argument list is swapped but content is otherwise okay just because the order is wrong. Yeah that could be a valid little fix.

I don't like that feature. Your best workaround in the short term is to rely on [overrides](https://rebar3.org/docs/configuration/configuration/#overrides): ``` {overrides, [{del, [{minimum_otp_vsn, "27"}]}]}. ``` and then see if it works. I...

Unfortunately, not the way things are currently structured. Basically, the version check happens in three places: 1. when [booting rebar3 based on the current app's specification](https://github.com/erlang/rebar3/blob/93116378748e9a5bbf95aeaf016436e59a91e94d/apps/rebar/src/rebar3.erl#L137) 2. whenever an [app...

My concern here is going to be to maintain good messaging across all OSes, which means that depending on the platform, hooks might need different commands for different failures, some...

Yeah the specific suggestion of "make it an extra hook" is a per-project thing if you want to provide better error messaging for your own hooks. It's not a general...

Yeah that's the "good detection of OSes for most issue types" approach. Means each message and error type we show would would need to look at the hook definition (is...

Something interesting to at least specify here is that since it'll use static linking, you should specify what your policy will be with regards to upgrading openssl versions in images...

Uh I had missed this issue going through. I can't really reproduce on my end. I still find boot files on my end in directories such as `_build/$profile/rel/$relname/$version/`, namely no_dot_erlang.boot,...

It's gonna be a bit challenging to know if it's normal or not, 3.13 is at least 5 years old by now, things changed a bit and we switched a...