Skip to content

Commit 1db5bec

Browse files
committed
Added support for VERBOSE ENV to mpr:
if true, prints when he detects a missing module and the command that he will execute to solve the problem. Signed-off-by: Pedro Melo <[email protected]>
1 parent 235ea80 commit 1db5bec

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

bin/mpr

+7
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,15 @@ TRY: while (1) {
3030
kill 9, $pid; ## Just in case he is acting stupid...
3131
waitpid($pid, 0);
3232

33+
if ($ENV{VERBOSE}) {
34+
print "\n\n***** Missing dependency detected: $pm\n";
35+
print "***** Running '$install_cmd $pm' to solve it\n\n";
36+
}
37+
3338
debug('INSTALL', $pm, 'using', $install_cmd);
3439
system($install_cmd, $pm);
40+
41+
print "\n\n***** Done '$install_cmd $pm'\n\n" if $ENV{VERBOSE};
3542
redo TRY;
3643
}
3744
}

0 commit comments

Comments
 (0)