From 8df95abf67b3fe56d0a9b621f07bb0444a75e758 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sat, 9 Jul 2011 10:44:52 -0400 Subject: functions: restore verbose feedback to add_module Since we no longer call _add_file from add_module, we lose our 'adding file..' feedback on -v. Explicitly mention each module alongside addition of the path/name to the associated arrays. Signed-off-by: Dave Reisner --- functions | 1 + 1 file changed, 1 insertion(+) diff --git a/functions b/functions index 7581933..3c0cd89 100644 --- a/functions +++ b/functions @@ -167,6 +167,7 @@ add_module() { fi # aggregate modules and add them all at once to save some forks + (( QUIET )) || plain "adding module: %s" "$1" MODPATHS+=("$path") ADDED_MODULES+=("${module//-/_}") -- cgit v1.2.3-24-g4f1b