search for: names_mod

Displaying 1 result from an estimated 1 matches for "names_mod".

Did you mean: names_mode
2013 Jun 06
1
[supermin PATCH] RFC: Add a --names-only flag.
...n.ml b/src/supermin.ml index 57189b4..c36d80f 100644 --- a/src/supermin.ml +++ b/src/supermin.ml @@ -39,11 +39,11 @@ let () = let ph = get_package_handler () in debug "selected package handler: %s" (get_package_handler_name ()); (* Not --names: check files exist. *) - if not names_mode then ( + if mode == PkgFiles then ( List.iter ( fun pkg -> if not (file_exists pkg) then ( eprintf "supermin: %s: no such file (did you miss out the --names option?)\n" pkg; exit 1 @@ -53,12 +53,12 @@ let () = (* --names: resolve the pa...