Skip to content

Commit

Permalink
Item10188: remove redundant EVAL_ERROR check
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@12347 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
PaulHarvey authored and PaulHarvey committed Aug 21, 2011
1 parent 0408861 commit c723a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/pseudo-install.pl
Expand Up @@ -827,7 +827,7 @@ sub satisfyDependency {
my ( $mod, $cond, $type, $mess ) = @_;

# First see if we can find it in the install or @INC path
if ( package_exists($mod) and not $EVAL_ERROR ) {
if ( package_exists($mod) ) {
trace "$mod is already installed";
}
else {
Expand Down

0 comments on commit c723a5b

Please sign in to comment.