Skip to content

Commit 6519f5d

Browse files
committed
Fixed interactive mode not outputting a .info file.
1 parent 95739e1 commit 6519f5d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

module_builder.drush.inc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,10 @@ function drush_module_builder_callback_build_module() {
330330
elseif (drush_get_option(array('write', 'go'))) {
331331
$build = 'all';
332332
}
333+
// In interactive mode, build everything.
334+
elseif (module_builder_determine_interactive_mode()) {
335+
$build = 'all';
336+
}
333337
// Otherwise, outputting to terminal: only module
334338
else {
335339
$build = 'code';

0 commit comments

Comments
 (0)