Page MenuHomeDevCentral

Prevent globbing and word splitting for shell script name
ClosedPublic

Authored by dereckson on Sep 6 2024, 21:38.
Tags
None
Referenced Files
F11829880: D3429.id8851.diff
Thu, Sep 25, 04:43
F11814628: D3429.id8850.diff
Wed, Sep 24, 16:55
F11813829: D3429.id8850.diff
Wed, Sep 24, 15:01
Unknown Object (File)
Tue, Sep 23, 15:08
Unknown Object (File)
Mon, Sep 22, 06:07
Unknown Object (File)
Sun, Sep 21, 15:04
Unknown Object (File)
Sun, Sep 21, 09:04
Unknown Object (File)
Sun, Sep 21, 00:31
Subscribers
None

Details

Summary

Shellcheck highlights an issue with the shell script snippet:

In roles/core/certificates/files/delete-certbot-certificate.sh line 28:
    echo "Usage: $(basename $0) <certificate>" >&2
                            ^-- SC2086 (info): Double quote to prevent globbing and word splitting.

Did you mean:
    echo "Usage: $(basename "$0") <certificate>" >&2
Test Plan

Tested with new script in rOPS

Diff Detail

Repository
rSNIPPETS Snippets
Lint
Lint Passed
Unit
No Test Coverage
Branch
fix-basename
Build Status
Buildable 5464
Build 5745: arc lint + arc unit