Skip to content

shellcheck: Fix shellcheck v0.11.0 issues detected in fsverity.test#32

Open
stefanberger wants to merge 1 commit intolinux-integrity:next-testingfrom
stefanberger:fix-shellcheck
Open

shellcheck: Fix shellcheck v0.11.0 issues detected in fsverity.test#32
stefanberger wants to merge 1 commit intolinux-integrity:next-testingfrom
stefanberger:fix-shellcheck

Conversation

@stefanberger
Copy link
Copy Markdown
Contributor

Fix the following issue detected by shellcheck:

if [ "x$(id -u)" != "x0" ]; then
^---------^ SC2268 (style): Avoid x-prefix in comparisons as it no
longer serves a purpose.

Also fix several of the following types of issues where shellcheck does not recognize the invocation of functions when they are indirectly invoked when they are passed as parameter to another function.

__skip() { return "$SKIP"; }
^-- SC2329 (info): This function is never invoked. Check usage (or
ignored if invoked indirectly).

Also see: https://www.shellcheck.net/wiki/SC2329

Fix the following issue detected by shellcheck:

if [ "x$(id -u)" != "x0" ]; then
     ^---------^ SC2268 (style): Avoid x-prefix in comparisons as it no \
    longer serves a purpose.

Also fix several of the following types of issues by disabling the
shellcheck error. Shellcheck does not recognize the invocation of functions
when they are indirectly invoked when they are passed as parameter to
another function.

__skip() { return "$SKIP"; }
^-- SC2329 (info): This function is never invoked. Check usage (or \
    ignored if invoked indirectly).

Also see: https://www.shellcheck.net/wiki/SC2329

Signed-off-by: Stefan Berger <stefanb@linux.ibm.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant