Unverified Commit 57445260 authored by John Ericson's avatar John Ericson Committed by GitHub
Browse files

Merge pull request #229113 from aschmolck/fix-nix-info-help

Fix nix-info --help to exit 0
parents 0c211eb0 eb811a6e
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -51,9 +51,14 @@ Options:
 -d, --debug      debug mode

EOF
            case "${1:-}" in
                -h|--help)
                    exit 0
                    ;;
                *)
                    exit 1
                    ;;

            esac
    esac
done