Debarshi Ray

Results 5 comments of Debarshi Ray

> > Unfortunately, having CMake as the only build system is causing some pain. > > I'm guessing **here** the problem isn't cmake itself, > but the fact that gnome...

> There is any number of build systems out there (autotools, cmake, meson, gn, build2, bazel, ...) > Will it be okay to accept to maintain exactly two of them,...

> The cause of this [#280 (comment)](https://github.com/koalaman/shellcheck/issues/280#issuecomment-77736551) (and probably some changes in parsing that went into 0.8.0). As I understand, this is not easy to fix :( There's a slightly...

In my case, something like this is triggering SC2030 and SC2031: ``` # shellcheck shell=bats @test "HISTFILESIZE 1" { if [ "$HISTFILESIZE" = "" ]; then HISTFILESIZE=1001 fi export HISTFILESIZE...

> As a work-around, replacing `[...]` with the equivalent `test ...` fixes the issue (stops the incorrect warning pileup). It doesn't seem to work anymore.