Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Makefile: Ignore SC2329 #414

Merged
merged 3 commits into from
May 13, 2024
Merged

Makefile: Ignore SC2329 #414

merged 3 commits into from
May 13, 2024

Commits on May 9, 2024

  1. install.sh: remove eval

    It's not needed
    
    Signed-off-by: Paweł Gronowski <[email protected]>
    vvoland committed May 9, 2024
    Configuration menu
    Copy the full SHA
    dd09dd2 View commit details
    Browse the repository at this point in the history
  2. Makefile: Ignore SC2329

    In previous versions of shellcheck, SC2317 was emitted for every line of
    a unused function and we're ignoring the SC2317 completely:
    https://github.com/docker/docker-install/blob/6e61729e66af62fd54c0b659751a431be8f90f68/Makefile#L6
    
    We were ignoring this error due to `version_compare` being reported as a
    false positive.
    
    After
    koalaman/shellcheck@4f81dbe
    this was fixed and now it produces one `SC2329` for the whole function
    instead of multiple SC2137.
    
    Signed-off-by: Paweł Gronowski <[email protected]>
    vvoland committed May 9, 2024
    Configuration menu
    Copy the full SHA
    21b3f00 View commit details
    Browse the repository at this point in the history
  3. Fix wrong example in version_gte comment

    Signed-off-by: Paweł Gronowski <[email protected]>
    vvoland committed May 9, 2024
    Configuration menu
    Copy the full SHA
    c428d31 View commit details
    Browse the repository at this point in the history