Zoltán Reegn

Results 155 comments of Zoltán Reegn

Would it make sense for antigen to just not assume the default branch of the repo is called `master`? It's somewhat user-hostile to have the user figure out what the...

Good to know. Jusy started experimenting with this part of CRD-s, so it's no biggie (not a deal breaker). I am playing with k3s for local development and I tend...

I did an RPM and DEB package last summer: https://github.com/tfutils/tfenv/issues/197 I will give it a go and try to do a snap version as well.

FYI this is fixed now in https://github.com/tfutils/tfenv/releases/tag/v3.0.0

A simple packaging could be achieved with https://github.com/jordansissel/fpm. I might give it a go to see how difficult it would be to package tfenv with fpm.

I have created RPM and DEB packages for tfenv over here: https://github.com/reegnz/terraform-tfenv-package/releases/tag/v2.0.0-1 I would prefer this code to be upstreamed to the tfenv repo though.

I did some changes to the packaging now to address some of those concerns: https://github.com/reegnz/terraform-tfenv-package/releases/tag/v2.2.0-1 * The multi-user system permissions are solved with a `tfenv` group who are allowed to...

Ran into the same issue: ``` dyld[17317]: Library not loaded: /usr/local/opt/jq/lib/libjq.1.dylib Referenced from: /opt/homebrew/Cellar/faq/0.0.7/bin/faq Reason: tried: '/usr/local/opt/jq/lib/libjq.1.dylib' (no such file), '/System/Volumes/Preboot/Cryptexes/OS/usr/local/opt/jq/lib/libjq.1.dylib' (no such file), '/usr/local/opt/jq/lib/libjq.1.dylib' (no such file), '/usr/local/lib/libjq.1.dylib' (no...

Huh, formula is pretty basic: https://github.com/jzelinskie/homebrew-faq/blob/master/Formula/faq.rb So I guess the problem is not how the formula passes the libjq dependency, but that it doesn't pass it at all! Because faq...

Pushed a fix for the homebrew formula to build from source instead of fetching pre-built binaries with faulty dynamic linking.