Jachim Coudenys

Results 15 comments of Jachim Coudenys

What should be changed in _badge.sass? The methods are not used there. Plus: I unfortunately don't have the tools to process sass files :/

We ran into the same problems, but after reading this suggested solution: won't the encrypted values be stored as plain text as group and host variables?

Is there a due date for 2.x? Any tickets were we can help?

We still see this error quite a lot on our setup. ``` 2023-11-30 12:37:28,292 ERROR [fa7348566d2e4873932a160255a1a0cd] awx.main.tasks.jobs job 161809 (running) Exception occurred while running task Traceback (most recent call last):...

Is there any suggestion to fix this issue, because we get this quite often: ``` /jobs/174889 2024-02-07T05:10:17.720127Z error (`zipfile.BadZipFile: File is not a zip file`) /jobs/174888 2024-02-07T05:10:17.631557Z error (`zipfile.BadZipFile: File...

The problem with this approach is that you cannot rely on the exit code of the find script (in a build/test script for instance). You can use this to accomplish...

Oh, yes off course. I use a recursive grep to find `#!/bin/sh` line in files, and pipe those filenames to shellcheck. I just wanted to note the fact that if...

@fkromer You need to use the `find` command. `$ for file in $(find . -type f); do shellcheck --format=gcc $file; done;`

@koalaman I've created a [Recursiveness](https://github.com/koalaman/shellcheck/wiki/Recursiveness) wiki page.

Thanks for the feedback @Pawamoy (learning more every day). This is the biggest reason `shellcheck` is not bothering with recursiveness ([Do One Thing and Do It Well](https://en.wikipedia.org/wiki/Unix_philosophy#Do_One_Thing_and_Do_It_Well)) :nerd_face:. Everyone has...