Skip to content

Commit

Permalink
Fix variable name.
Browse files Browse the repository at this point in the history
Fixes installing a single package.
  • Loading branch information
yunosh committed Dec 14, 2016
1 parent 682fabd commit bb8b9ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/bin/install_framework
Expand Up @@ -155,7 +155,7 @@ $pkg_ob = new PEAR_Package_Parse();
$pkgs = $pkg_ob->getPackages(array($srcDir));

$cli->writeLn();
$cli->message('Package(s) to install: ' . ((count($pkgs) === 1) ? reset($pkg) : 'ALL (' . count($pkgs) . ' packages)'));
$cli->message('Package(s) to install: ' . ((count($pkgs) === 1) ? reset($pkgs) : 'ALL (' . count($pkgs) . ' packages)'));

foreach ($pkgs as $key => $val) {
if ($debug) {
Expand Down

0 comments on commit bb8b9ec

Please sign in to comment.