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

Fix nix-info --help to exit 0
This commit is contained in:
John Ericson
2023-05-10 17:33:33 -04:00
committed by GitHub
+8 -3
View File
@@ -51,9 +51,14 @@ Options:
-d, --debug debug mode
EOF
exit 1
;;
case "${1:-}" in
-h|--help)
exit 0
;;
*)
exit 1
;;
esac
esac
done