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

Add new shouldUseExecutableName configuration property (Issue #295) #501

Open
wants to merge 9 commits into
base: main
Choose a base branch
from

Commits on Oct 4, 2022

  1. Adds a new CommandConfiguration property, addressing apple#295

    This adds the `shouldUseExecutableName` property, allowing the
    command name to be derived from the executable's file name.
    
    The property defaults to false, both because subcommands using
    it is probably undesirable and to preserve existing behaviour
    after updating the package.
    smvz committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    c07660f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    20b685a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3737f85 View commit details
    Browse the repository at this point in the history
  4. Add DerivedData to gitignore

    smvz committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    de0984a View commit details
    Browse the repository at this point in the history
  5. Make executable name portable

    smvz committed Oct 4, 2022
    Configuration menu
    Copy the full SHA
    3795cdc View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2022

  1. Configuration menu
    Copy the full SHA
    301a9e5 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2023

  1. Remove unnecessary backslashes in test cases

    This doesn't change test behaviour in any way. Single quotes were escaped
    unnecessarily for some tests, these escapes have been removed to make
    them consistent and clearer.
    smvz committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    9077605 View commit details
    Browse the repository at this point in the history
  2. Bring up to date with main

    smvz committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    92b34d7 View commit details
    Browse the repository at this point in the history
  3. Add Foundation.URL import to UsageGenerator.swift

    Foundation imports were reduced to only the necessary protocols or
    types in the main branch. After merging, we need to import
    `Foundation.URL` for use in `executableName`.
    smvz committed Sep 23, 2023
    Configuration menu
    Copy the full SHA
    d84fb0d View commit details
    Browse the repository at this point in the history