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

panache-git: do not print stderr from Git commands #813

Merged
merged 1 commit into from
Apr 11, 2024

Commits on Apr 9, 2024

  1. panache-git: do not print stderr from Git commands

    Nushell 0.92 changed how external commands operate in pipelines:
    https://www.nushell.sh/blog/2024-04-02-nushell_0_92_0.html
    
    After updating to Nushell 0.92, panache-git would print errors
    when the current working directory was not a Git repository:
    "fatal: not a git repository (or any of the parent directories): .git"
    
    This change properly handles stderr from Git commands
    according to Nushell's updated external command behavior.
    
    Also, Nushell 0.91 introduced "is-not-empty", so places in the code
    where a string was checked for being not-empty or not-contains
    were simplified a bit.
    
    Finally, the main command in the module was renamed to "main"
    to make it simpler to import and use in config.
    ehdevries committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    a4fcff1 View commit details
    Browse the repository at this point in the history