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

Document how to stabilize a library feature #1036

Merged
merged 3 commits into from
Feb 1, 2021

Commits on Jan 23, 2021

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

Commits on Feb 1, 2021

  1. Document how to stabilize a library feature

    Note that features can't be stabilized until they go through FCP and
    that FCP happens on the tracking issue, not the PR.
    jyn514 committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    cf568f3 View commit details
    Browse the repository at this point in the history
  2. Fix wrong glob

    By default `**` behaves the same as two `*` side by side, i.e. it only
    globs file paths, not directories. `shopt -s globstar` needs to be set
    for it to mean a directory. I didn't notice this before now because
    `globstar` is set by default in interactive mode, but not otherwise.
    jyn514 committed Feb 1, 2021
    Configuration menu
    Copy the full SHA
    25d4201 View commit details
    Browse the repository at this point in the history