Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #108 from dwarring/patch-1
Don't install deps when just 'look'ing
  • Loading branch information
FROGGS committed Oct 22, 2014
2 parents 1ff9959 + 8148bf2 commit 3db0fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/panda
Expand Up @@ -47,7 +47,7 @@ multi MAIN ('search', $pattern) {
multi MAIN ('look', *@modules) {
for @modules -> $x {
try {
$panda.resolve($x, :notests, :action<look>);
$panda.resolve($x, :notests, :nodeps, :action<look>);
CATCH { when X::Panda { say $_.message } }
};
}
Expand Down

0 comments on commit 3db0fd2

Please sign in to comment.