Conan-Kudo requested changes on this pull request.


> +}
+#
+#
+usage() {
+    echo >&2 "Usage: ${0##*/} -prov|-req [-f 'ocamlobjinfo cmd']"
+}
+#
+mode=
+ignore_implementation_a=()
+ignore_interface_a=()
+while test "$#" -gt 0
+do
+  : "${1}" "${2}"
+  case "${1}" in
+    -prov) mode='prov' ;;
+    -req) mode='req' ;;

Shouldn't this be something like the following?

```bash
    -P|--provides) mode='prov' ;;
    -R|--requires) mode='req' ;;
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/1070#pullrequestreview-359260050
_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to