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

Minor cleanup #1108

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open

Minor cleanup #1108

wants to merge 7 commits into from

Commits on Sep 12, 2022

  1. Configuration menu
    Copy the full SHA
    6f84e15 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1f018ad View commit details
    Browse the repository at this point in the history
  3. Modernize script syntax

    a1346054 committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    12c9869 View commit details
    Browse the repository at this point in the history
  4. Unify codestyle in scripts to make comparison easier

    This makes it easier to see what the exact differences are between the
    three files, as well as fixes a mix of tabs and spaces.
    a1346054 committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    cdb55c5 View commit details
    Browse the repository at this point in the history
  5. Fix test for existence of command

    `which` will print, even if the command does not exist, so the test will
    never fail. Additionally, `which` is non-standard, and has been
    deprecated by debian. `command -v` is the POSIX-standardized way of
    testing for existence of commands, and works the same even on non-POSIX
    systems that implement the `command` command.
    
    `command -v` will exit with 0 and print to stdout when the command
    exists, and will exit with 1 and *not* print anything to stdout or
    stderr when the command does not exist.
    a1346054 committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    43ef67b View commit details
    Browse the repository at this point in the history
  6. Use license file from gnu.org

    The previous file had broken indentation as well as other minor
    differences from the file distributed by gnu.org
    
    File downloaded from:
    https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
    a1346054 committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    eb72ca0 View commit details
    Browse the repository at this point in the history
  7. Fix spelling

    a1346054 committed Sep 12, 2022
    Configuration menu
    Copy the full SHA
    0e420c3 View commit details
    Browse the repository at this point in the history